Skip to content

Commit

Permalink
fix(latex): address issue regarding escaping (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisDimitropoulos authored Jul 8, 2024
1 parent 1f7def5 commit 71fe3d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snippets/latex/vscode-latex-snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@
},
"Inline Math": {
"prefix": ["mathinline", "\\mathinline"],
"body": ["$ $1 $$0"],
"body": ["\\$ $1 \\$$0"],
"description": "Insert inline Math Environment."
},
"Centered Math": {
"prefix": ["mathcentered", "\\mathcentered"],
"body": ["$$ $0 $$"],
"body": ["\\$$ $0 \\$$"],
"description": "Insert centered Math Environment."
},
"Section": {
Expand Down

0 comments on commit 71fe3d9

Please sign in to comment.