소스 검색

Add command to escape \n character

DricomDragon 5 년 전
부모
커밋
c440491ff8
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      Guides/ics-vim.md

+ 13 - 0
Guides/ics-vim.md

@@ -2,3 +2,16 @@
 
 Tips to modify an autogenerated ics file with the Vim text editor.
 
+## Remove unescaped \n
+
+Commande vim : `:%s/\\n//g`
+
+Before :
+```
+SUMMARY:TP - CCUBE - C000\n
+```
+
+After :
+```
+SUMMARY:TP - CCUBE - C000
+```