Browse Source

Add command to escape \n character

DricomDragon 5 years ago
parent
commit
c440491ff8
1 changed files with 13 additions and 0 deletions
  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
+```