瀏覽代碼

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
+```