mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 21:01:33 +02:00
[visual] Decorate \ce command (#16459)
GitOrigin-RevId: 0eab030489f97e43874e41d6d4895dc4de46521a
This commit is contained in:
@@ -1108,6 +1108,33 @@ export const atomicDecorations = (options: Options) => {
|
||||
widget: new TeXWidget(),
|
||||
}).range(nodeRef.from, nodeRef.to)
|
||||
)
|
||||
return false
|
||||
}
|
||||
} else if (commandName === '\\ce') {
|
||||
// Chemical equation/formula, from the `mhchem` CTAN package.
|
||||
// Handled by the MathJaX mhchem extension:
|
||||
// https://docs.mathjax.org/en/latest/input/tex/extensions/mhchem.html
|
||||
if (textArgumentNode && shouldDecorate(state, nodeRef)) {
|
||||
const innerContent = state.doc
|
||||
.sliceString(
|
||||
textArgumentNode.from + 1,
|
||||
textArgumentNode.to - 1
|
||||
)
|
||||
.trim()
|
||||
|
||||
if (innerContent.length) {
|
||||
const outerContent = state.doc.sliceString(
|
||||
nodeRef.from,
|
||||
nodeRef.to
|
||||
)
|
||||
|
||||
decorations.push(
|
||||
Decoration.replace({
|
||||
widget: new MathWidget(outerContent, false),
|
||||
}).range(nodeRef.from, nodeRef.to)
|
||||
)
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
} else if (hasCharacterSubstitution(commandName)) {
|
||||
|
||||
Reference in New Issue
Block a user