Skip to content

Commit 71fe3d9

Browse files
fix(latex): address issue regarding escaping (rafamadriz#473)
1 parent 1f7def5 commit 71fe3d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snippets/latex/vscode-latex-snippets.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@
8181
},
8282
"Inline Math": {
8383
"prefix": ["mathinline", "\\mathinline"],
84-
"body": ["$ $1 $$0"],
84+
"body": ["\\$ $1 \\$$0"],
8585
"description": "Insert inline Math Environment."
8686
},
8787
"Centered Math": {
8888
"prefix": ["mathcentered", "\\mathcentered"],
89-
"body": ["$$ $0 $$"],
89+
"body": ["\\$$ $0 \\$$"],
9090
"description": "Insert centered Math Environment."
9191
},
9292
"Section": {

0 commit comments

Comments
 (0)