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*', 'eqnarray*',
'align', 'align',
'align*', 'align*',
'aligned',
'aligned*',
'array', 'array',
'array*', 'array*',
'split', 'split',
'split*', 'split*',
'alignat', 'alignat',
'alignat*', 'alignat*',
'alignedat',
'alignedat*',
'gather', 'gather',
'gather*', 'gather*',
'gathered',
'gathered*',
'flalign', 'flalign',
'flalign*', 'flalign*',
), ),

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