Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TextMate rules for Markdown math formula syntax highlighting #222

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions themes/nord-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,37 @@
"foreground": "#616E88"
}
},
{
"name": "[Markdown] Markup Math Constant",
"scope": "text.html.markdown constant.character.math.tex",
"settings": {
"foreground": "#81A1C1"
}
},
{
"name": "[Markdown] Markup Math Definition Marker",
"scope": [
"text.html.markdown punctuation.definition.math.begin",
"text.html.markdown punctuation.definition.math.end"
],
"settings": {
"foreground": "#5E81AC"
}
},
{
"name": "[Markdown] Markup Math Function Definition Marker",
"scope": "text.html.markdown punctuation.definition.function.math.tex",
"settings": {
"foreground": "#88C0D0"
}
},
{
"name": "[Markdown] Markup Math Operator",
"scope": "text.html.markdown punctuation.math.operator.latex",
"settings": {
"foreground": "#81A1C1"
}
},
{
"name": "[Markdown] Punctuation Definition Heading",
"scope": "text.html.markdown punctuation.definition.heading",
Expand Down