Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@unified-latex/unified-latex-util-visit
Advanced tools
Functions for traversing a unified-latex AST
Functions to traverse a unified-latex
Abstract Syntax Tree (AST). visit
is
very similar to estree-util-visit.
If you want to recursively replace particular AST nodes.
npm install @unified-latex/unified-latex-util-visit
This package contains both esm and commonjs exports. To explicitly access the esm export,
import the .js
file. To explicitly access the commonjs export, import the .cjs
file.
visit(tree, visitor, options)
Visit children of tree which pass a test
function visit<Opts extends VisitOptions>(
tree: Ast.Ast,
visitor:
| Visitor<NarrowArraysBasedOnOptions<GuardFromOptions<Opts, Ast.Ast>, Opts>>
| Visitors<
NarrowArraysBasedOnOptions<GuardFromOptions<Opts, Ast.Ast>, Opts>
>,
options: VisitOptions
): void;
Parameters
Param | Type | Description |
---|---|---|
tree | Ast.Ast | Abstract syntax tree to walk |
visitor | Omitted | Function to run for each node |
options | VisitOptions | see below |
where
type VisitOptions = {
startingContext?: VisitorContext;
/**
* Type guard for types that are passed to the `visitor` function.
*/
test?: (node: Ast.Ast, info: VisitInfo) => boolean;
/**
* Whether arrays will be sent to the `visitor` function. If falsy,
* only nodes will be past to `visitor`.
*/
includeArrays?: boolean;
};
Name | Type | Description |
---|---|---|
CONTINUE | Symbol | Continue traversing as normal |
EXIT | Symbol | Stop traversing immediately |
SKIP | Symbol | Do not traverse this node’s children |
VisitInfo
export type VisitInfo = {
/**
* If the element was accessed via an attribute, the attribute key is specified.
*/
readonly key: string | undefined;
/**
* If the element was accessed in an array, the index is specified.
*/
readonly index: number | undefined;
/**
* A list of ancestor nodes, `[parent, grandparent, great-grandparent, ...]`
*/
readonly parents: (Ast.Node | Ast.Argument)[];
/**
* If the element was accessed in an array, the array that it is part of.
*/
readonly containingArray: (Ast.Node | Ast.Argument)[] | undefined;
/**
* The LaTeX context of the current match.
*/
readonly context: VisitorContext;
};
VisitorContext
export type VisitorContext = {
/**
* Whether the node is being processed in math mode.
*
* This happens when the node is a director or indirect child
* of a math environment (e.g. `$abc$`), but not when an environment
* re-establishes text mode (e.g. `$\text{abc}$`)
*/
inMathMode?: boolean;
/**
* Whether the node has any ancestor that is processed in math mode.
*/
hasMathModeAncestor?: boolean;
};
v1.8.0
amsart
macros\o y
produces øy
instead of ø y
\hyphenation
FAQs
Functions for traversing a unified-latex AST
The npm package @unified-latex/unified-latex-util-visit receives a total of 3,527 weekly downloads. As such, @unified-latex/unified-latex-util-visit popularity was classified as popular.
We found that @unified-latex/unified-latex-util-visit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.