MCPcopy Create free account
hub / github.com/KaTeX/KaTeX / buildExpressionRow

Function buildExpressionRow

src/buildMathML.ts:244–250  ·  view source on GitHub ↗
(
    expression: AnyParseNode[],
    options: Options,
    isOrdgroup?: boolean,
)

Source from the content-addressed store, hash-verified

242 * if there's more than one. Returns a single node instead of an array.
243 */
244export const buildExpressionRow = function(
245 expression: AnyParseNode[],
246 options: Options,
247 isOrdgroup?: boolean,
248): MathDomNode {
249 return makeRow(buildExpression(expression, options, isOrdgroup));
250};
251
252/**
253 * Takes a group from the parser and calls the appropriate groupBuilders function

Callers

nothing calls this directly

Calls 2

makeRowFunction · 0.85
buildExpressionFunction · 0.70

Tested by

no test coverage detected