@unified-latex/unified-latex-util-parse
Advanced tools
Comparing version 1.7.1 to 1.8.0
{ | ||
"name": "@unified-latex/unified-latex-util-parse", | ||
"version": "1.7.1", | ||
"version": "1.8.0", | ||
"description": "Tools for manipulating unified-latex ASTs", | ||
@@ -8,12 +8,12 @@ "main": "index.js", | ||
"dependencies": { | ||
"@unified-latex/unified-latex-ctan": "^1.7.1", | ||
"@unified-latex/unified-latex-types": "^1.7.1", | ||
"@unified-latex/unified-latex-util-arguments": "^1.7.1", | ||
"@unified-latex/unified-latex-util-catcode": "^1.7.1", | ||
"@unified-latex/unified-latex-util-environments": "^1.7.1", | ||
"@unified-latex/unified-latex-util-match": "^1.7.1", | ||
"@unified-latex/unified-latex-util-pegjs": "^1.7.1", | ||
"@unified-latex/unified-latex-util-print-raw": "^1.7.1", | ||
"@unified-latex/unified-latex-util-trim": "^1.7.1", | ||
"@unified-latex/unified-latex-util-visit": "^1.7.1", | ||
"@unified-latex/unified-latex-ctan": "^1.8.0", | ||
"@unified-latex/unified-latex-types": "^1.8.0", | ||
"@unified-latex/unified-latex-util-arguments": "^1.8.0", | ||
"@unified-latex/unified-latex-util-catcode": "^1.8.0", | ||
"@unified-latex/unified-latex-util-environments": "^1.8.0", | ||
"@unified-latex/unified-latex-util-match": "^1.8.0", | ||
"@unified-latex/unified-latex-util-pegjs": "^1.8.0", | ||
"@unified-latex/unified-latex-util-print-raw": "^1.8.0", | ||
"@unified-latex/unified-latex-util-trim": "^1.8.0", | ||
"@unified-latex/unified-latex-util-visit": "^1.8.0", | ||
"unified": "^10.1.2" | ||
@@ -20,0 +20,0 @@ }, |
@@ -54,3 +54,3 @@ <!-- DO NOT MODIFY --> | ||
```typescript | ||
{ mode?: "math" | "regular"; macros?: Ast.MacroInfoRecord; environments?: Ast.EnvInfoRecord; flags?: { atLetter?: boolean; expl3?: boolean; autodetectExpl3AndAtLetter?: boolean; }; } | ||
{ mode?: "math" | "regular"; macros?: MacroInfoRecord; environments?: EnvInfoRecord; flags?: { atLetter?: boolean; expl3?: boolean; autodetectExpl3AndAtLetter?: boolean; }; } | ||
``` | ||
@@ -60,3 +60,3 @@ | ||
`Plugin<{ mode?: "math" | "regular"; macros?: Ast.MacroInfoRecord; environments?: Ast.EnvInfoRecord; flags?: { atLetter?: boolean; expl3?: boolean; autodetectExpl3AndAtLetter?: boolean; }; }[], string, Ast.Root>` | ||
`Plugin<{ mode?: "math" | "regular"; macros?: MacroInfoRecord; environments?: EnvInfoRecord; flags?: { atLetter?: boolean; expl3?: boolean; autodetectExpl3AndAtLetter?: boolean; }; }[], string, Ast.Root>` | ||
@@ -66,4 +66,4 @@ ```typescript | ||
mode?: "math" | "regular"; | ||
macros?: Ast.MacroInfoRecord; | ||
environments?: Ast.EnvInfoRecord; | ||
macros?: MacroInfoRecord; | ||
environments?: EnvInfoRecord; | ||
flags?: { | ||
@@ -140,3 +140,3 @@ atLetter?: boolean; | ||
```typescript | ||
{ environments: Ast.EnvInfoRecord; macros: Ast.MacroInfoRecord; } | ||
{ environments: EnvInfoRecord; macros: MacroInfoRecord; } | ||
``` | ||
@@ -146,8 +146,8 @@ | ||
`Plugin<{ environments: Ast.EnvInfoRecord; macros: Ast.MacroInfoRecord; }[], Ast.Root, Ast.Root>` | ||
`Plugin<{ environments: EnvInfoRecord; macros: MacroInfoRecord; }[], Ast.Root, Ast.Root>` | ||
```typescript | ||
function unifiedLatexProcessMacrosAndEnvironmentsWithMathReparse(options: { | ||
environments: Ast.EnvInfoRecord; | ||
macros: Ast.MacroInfoRecord; | ||
environments: EnvInfoRecord; | ||
macros: MacroInfoRecord; | ||
}): (tree: Ast.Root) => void; | ||
@@ -154,0 +154,0 @@ ``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
193320
1749