mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #18901 from overleaf/mj-math-mode-args
[lezer] Parse command arguments in math mode GitOrigin-RevId: 85a35f412de4c7238d735253c2642066ebffb393
This commit is contained in:
parent
d2ae97427d
commit
9b1c703f6b
4 changed files with 54 additions and 24 deletions
|
@ -168,7 +168,7 @@ export const LaTeXLanguage = LRLanguage.define({
|
||||||
'MathGroup/OpenBrace MathGroup/CloseBrace': t.string,
|
'MathGroup/OpenBrace MathGroup/CloseBrace': t.string,
|
||||||
'MathTextCommand/TextArgument/OpenBrace MathTextCommand/TextArgument/CloseBrace':
|
'MathTextCommand/TextArgument/OpenBrace MathTextCommand/TextArgument/CloseBrace':
|
||||||
t.string,
|
t.string,
|
||||||
'MathOpening/LeftCtrlSeq MathClosing/RightCtrlSeq MathCommand/CtrlSeq MathTextCommand/CtrlSeq':
|
'MathOpening/LeftCtrlSeq MathClosing/RightCtrlSeq MathUnknownCommand/CtrlSeq MathTextCommand/CtrlSeq':
|
||||||
t.literal,
|
t.literal,
|
||||||
MathDelimiter: t.literal,
|
MathDelimiter: t.literal,
|
||||||
DoubleDollar: t.keyword,
|
DoubleDollar: t.keyword,
|
||||||
|
|
|
@ -142,7 +142,7 @@
|
||||||
|
|
||||||
Number { $[0-9]+ ("." $[0-9]*)? }
|
Number { $[0-9]+ ("." $[0-9]*)? }
|
||||||
MathSpecialChar { $[^_=<>()\-+/*]+ } // FIXME not all of these are special
|
MathSpecialChar { $[^_=<>()\-+/*]+ } // FIXME not all of these are special
|
||||||
MathChar { ![0-9^_=<>()\-+/*\\{}\[\]\n$%&~]+ }
|
MathChar { ![0-9^_=<>()\-+/*\\{}\[\]$%&~ \t\n]+ }
|
||||||
|
|
||||||
@precedence { Number, MathSpecialChar, MathChar }
|
@precedence { Number, MathSpecialChar, MathChar }
|
||||||
|
|
||||||
|
@ -684,14 +684,13 @@ BracketMath {
|
||||||
// because display math can contain blank lines while inline math cannot.
|
// because display math can contain blank lines while inline math cannot.
|
||||||
|
|
||||||
Math {
|
Math {
|
||||||
( MathTextCommand
|
( MathCommand
|
||||||
| MathCommand
|
| Group<Math>
|
||||||
| MathCtrlSym
|
|
||||||
| MathGroup
|
|
||||||
| MathDelimitedGroup
|
| MathDelimitedGroup
|
||||||
| MathSpecialChar
|
| MathSpecialChar
|
||||||
| Number
|
| Number
|
||||||
| NewLine
|
| NewLine
|
||||||
|
| Whitespace
|
||||||
| KnownEnvironment
|
| KnownEnvironment
|
||||||
| Environment
|
| Environment
|
||||||
| MathChar
|
| MathChar
|
||||||
|
@ -699,24 +698,38 @@ Math {
|
||||||
| CloseBracket
|
| CloseBracket
|
||||||
| Ampersand
|
| Ampersand
|
||||||
| Tilde
|
| Tilde
|
||||||
| Label {
|
|
||||||
LabelCtrlSeq optionalWhitespace? OptionalArgument? LabelArgument
|
|
||||||
}
|
|
||||||
| Ref {
|
|
||||||
(RefCtrlSeq | RefStarrableCtrlSeq "*"?) optionalWhitespace? OptionalArgument? optionalWhitespace? OptionalArgument? optionalWhitespace? RefArgument
|
|
||||||
}
|
|
||||||
)+
|
)+
|
||||||
}
|
}
|
||||||
|
|
||||||
MathTextCommand {
|
|
||||||
(MathTextCtrlSeq | HboxCtrlSeq) optionalWhitespace? "*"? TextArgument
|
MathCommand {
|
||||||
|
MathKnownCommand
|
||||||
|
| MathUnknownCommand
|
||||||
}
|
}
|
||||||
|
|
||||||
MathCommand { CtrlSeq }
|
MathKnownCommand {
|
||||||
|
KnownCtrlSym
|
||||||
|
| Label {
|
||||||
|
LabelCtrlSeq optionalWhitespace? OptionalArgument? LabelArgument
|
||||||
|
}
|
||||||
|
| Ref {
|
||||||
|
(RefCtrlSeq | RefStarrableCtrlSeq "*"?) optionalWhitespace? OptionalArgument? optionalWhitespace? OptionalArgument? optionalWhitespace? RefArgument
|
||||||
|
}
|
||||||
|
| MathTextCommand {
|
||||||
|
(MathTextCtrlSeq | HboxCtrlSeq) optionalWhitespace? "*"? TextArgument
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
MathCtrlSym { CtrlSym | KnownCtrlSym }
|
@external tokens endOfArgumentListTokenizer from "./tokens.mjs" {
|
||||||
|
endOfArguments
|
||||||
|
}
|
||||||
|
|
||||||
MathGroup {
|
MathUnknownCommand {
|
||||||
|
CtrlSeq (optionalWhitespace? MathArgument)* optionalWhitespace? endOfArguments
|
||||||
|
| CtrlSym
|
||||||
|
}
|
||||||
|
|
||||||
|
MathArgument {
|
||||||
OpenBrace Math? CloseBrace
|
OpenBrace Math? CloseBrace
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -80,6 +80,8 @@ import {
|
||||||
BottomRuleCtrlSeq,
|
BottomRuleCtrlSeq,
|
||||||
TableEnvName,
|
TableEnvName,
|
||||||
MultiColumnCtrlSeq,
|
MultiColumnCtrlSeq,
|
||||||
|
// Marker for end of argument lists
|
||||||
|
endOfArguments,
|
||||||
} from './latex.terms.mjs'
|
} from './latex.terms.mjs'
|
||||||
|
|
||||||
function nameChar(ch) {
|
function nameChar(ch) {
|
||||||
|
@ -262,6 +264,22 @@ const CHAR_FULL_STOP = _char('.')
|
||||||
const CHAR_BACKSLASH = _char('\\')
|
const CHAR_BACKSLASH = _char('\\')
|
||||||
const CHAR_OPEN_BRACE = _char('{')
|
const CHAR_OPEN_BRACE = _char('{')
|
||||||
const CHAR_CLOSE_BRACE = _char('}')
|
const CHAR_CLOSE_BRACE = _char('}')
|
||||||
|
const CHAR_TAB = _char('\t')
|
||||||
|
const CHAR_SPACE = _char(' ')
|
||||||
|
const CHAR_NEWLINE = _char('\n')
|
||||||
|
|
||||||
|
export const endOfArgumentListTokenizer = new ExternalTokenizer(
|
||||||
|
input => {
|
||||||
|
const { next } = input
|
||||||
|
if (next === CHAR_SPACE || next === CHAR_TAB) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (next !== CHAR_OPEN_BRACE) {
|
||||||
|
input.acceptToken(endOfArguments)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ contextual: false, fallback: true }
|
||||||
|
)
|
||||||
|
|
||||||
const ALLOWED_DELIMITER_NAMES = [
|
const ALLOWED_DELIMITER_NAMES = [
|
||||||
'lfloor',
|
'lfloor',
|
||||||
|
@ -391,8 +409,6 @@ export const csnameTokenizer = new ExternalTokenizer((input, stack) => {
|
||||||
return input.acceptToken(Csname, end + 1)
|
return input.acceptToken(Csname, end + 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
const CHAR_SPACE = _char(' ')
|
|
||||||
const CHAR_NEWLINE = _char('\n')
|
|
||||||
const END_DOCUMENT_MARK = '\\end{document}'.split('').reverse()
|
const END_DOCUMENT_MARK = '\\end{document}'.split('').reverse()
|
||||||
|
|
||||||
export const trailingContentTokenizer = new ExternalTokenizer(
|
export const trailingContentTokenizer = new ExternalTokenizer(
|
||||||
|
|
|
@ -74,14 +74,15 @@ export const enterNode = (
|
||||||
items.push(thisCommand)
|
items.push(thisCommand)
|
||||||
} else if (
|
} else if (
|
||||||
node.type.is('UnknownCommand') ||
|
node.type.is('UnknownCommand') ||
|
||||||
node.type.is('MathCommand') ||
|
node.type.is('KnownCommand') ||
|
||||||
node.type.is('KnownCommand')
|
node.type.is('MathUnknownCommand') ||
|
||||||
|
node.type.is('MathKnownCommand')
|
||||||
) {
|
) {
|
||||||
let commandNode: SyntaxNode | null = node.node
|
let commandNode: SyntaxNode | null = node.node
|
||||||
if (node.type.is('KnownCommand')) {
|
if (node.type.is('KnownCommand') || node.type.is('MathKnownCommand')) {
|
||||||
// KnownCommands are defined as
|
// (Math)KnownCommands are defined as
|
||||||
//
|
//
|
||||||
// KnownCommand {
|
// (Math)KnownCommand {
|
||||||
// CommandName {
|
// CommandName {
|
||||||
// CommandCtrlSeq [args]
|
// CommandCtrlSeq [args]
|
||||||
// }
|
// }
|
||||||
|
|
Loading…
Reference in a new issue