Add extra math environments (#150)

Signed-off-by: Jonas Dujava <jonas.dujava@gmail.com>
pull/813/head
Jonáš Dujava 2024-07-23 09:15:06 +07:00 committed by GitHub
parent 12523bd1ff
commit 81acebb480
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 30 additions and 0 deletions

@ -576,14 +576,20 @@ module.exports = grammar({
'eqnarray*',
'align',
'align*',
'aligned',
'aligned*',
'array',
'array*',
'split',
'split*',
'alignat',
'alignat*',
'alignedat',
'alignedat*',
'gather',
'gather*',
'gathered',
'gathered*',
'flalign',
'flalign*',
),

@ -3893,6 +3893,14 @@
"type": "STRING",
"value": "align*"
},
{
"type": "STRING",
"value": "aligned"
},
{
"type": "STRING",
"value": "aligned*"
},
{
"type": "STRING",
"value": "array"
@ -3917,6 +3925,14 @@
"type": "STRING",
"value": "alignat*"
},
{
"type": "STRING",
"value": "alignedat"
},
{
"type": "STRING",
"value": "alignedat*"
},
{
"type": "STRING",
"value": "gather"
@ -3925,6 +3941,14 @@
"type": "STRING",
"value": "gather*"
},
{
"type": "STRING",
"value": "gathered"
},
{
"type": "STRING",
"value": "gathered*"
},
{
"type": "STRING",
"value": "flalign"