Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
mdast-util-math
Advanced tools
The `mdast-util-math` package is a utility for working with math content in Markdown Abstract Syntax Trees (MDAST). It provides tools to parse and serialize math content, making it easier to handle mathematical expressions within Markdown documents.
Parse Math Content
This feature allows you to parse Markdown content that includes inline and block math expressions. The code sample demonstrates how to use `mdast-util-math` with `remark-parse` and `remark-math` to parse a Markdown string containing a math expression.
const { fromMarkdown } = require('mdast-util-math');
const { unified } = require('unified');
const markdown = require('remark-parse');
const math = require('remark-math');
const processor = unified()
.use(markdown)
.use(math);
const tree = processor.parse('Here is some math: $E=mc^2$');
console.log(tree);
Serialize Math Content
This feature allows you to serialize MDAST containing math expressions back into Markdown. The code sample shows how to convert an MDAST tree with an inline math node back into a Markdown string.
const { toMarkdown } = require('mdast-util-math');
const { unified } = require('unified');
const markdown = require('remark-stringify');
const math = require('remark-math');
const tree = {
type: 'root',
children: [
{ type: 'paragraph', children: [
{ type: 'text', value: 'Here is some math: ' },
{ type: 'inlineMath', value: 'E=mc^2' }
]}
]
};
const processor = unified()
.use(markdown)
.use(math);
const result = processor.stringify(tree);
console.log(result);
The `remark-math` package is a plugin for `remark` that adds support for parsing and rendering math in Markdown. It works well with `mdast-util-math` but can also be used independently to handle math content in Markdown documents. Compared to `mdast-util-math`, `remark-math` focuses more on integrating math parsing and rendering into the `remark` ecosystem.
The `rehype-katex` package is a plugin for `rehype` that renders math using KaTeX. It is used to convert math content in HTML documents into beautifully rendered math expressions. While `mdast-util-math` focuses on parsing and serializing math in MDAST, `rehype-katex` is more about rendering math in HTML.
mdast extensions to parse and serialize math ($C_L$
).
This package contains two extensions that add support for math syntax in
markdown to mdast.
These extensions plug into
mdast-util-from-markdown
(to support parsing
math in markdown into a syntax tree) and
mdast-util-to-markdown
(to support serializing
math in syntax trees to markdown).
This project is useful when you want to support math in markdown. Extending markdown with a syntax extension makes the markdown less portable. LaTeX equations are also quite hard. But this mechanism works well when you want authors, that have some LaTeX experience, to be able to embed rich diagrams of math in scientific text.
You can use these extensions when you are working with
mdast-util-from-markdown
and mdast-util-to-markdown
already.
When working with mdast-util-from-markdown
, you must combine this package
with micromark-extension-math
.
When you don’t need a syntax tree, you can use micromark
directly with
micromark-extension-math
.
All these packages are used remark-math
, which
focusses on making it easier to transform content by abstracting these
internals away.
This utility adds fields on nodes so that the utility responsible for
turning mdast (markdown) nodes into hast (HTML) nodes,
mdast-util-to-hast
, turns text (inline) math nodes into
<span class="math math-inline">…</span>
and flow (block) math nodes into
<div class="math math-display">…</div>
.
This package is ESM only. In Node.js (version 14.14+ and 16.0+), install with npm:
npm install mdast-util-math
In Deno with esm.sh
:
import {mathFromMarkdown, mathToMarkdown} from 'https://esm.sh/mdast-util-math@2'
In browsers with esm.sh
:
<script type="module">
import {mathFromMarkdown, mathToMarkdown} from 'https://esm.sh/mdast-util-math@2?bundle'
</script>
Say our document example.md
contains:
Lift($L$) can be determined by Lift Coefficient ($C_L$) like the following equation.
$$
L = \frac{1}{2} \rho v^2 S C_L
$$
…and our module example.js
looks as follows:
import fs from 'node:fs/promises'
import {fromMarkdown} from 'mdast-util-from-markdown'
import {toMarkdown} from 'mdast-util-to-markdown'
import {math} from 'micromark-extension-math'
import {mathFromMarkdown, mathToMarkdown} from 'mdast-util-math'
const doc = await fs.readFile('example.md')
const tree = fromMarkdown(doc, {
extensions: [math()],
mdastExtensions: [mathFromMarkdown()]
})
console.log(tree)
const out = toMarkdown(tree, {extensions: [mathToMarkdown()]})
console.log(out)
…now running node example.js
yields (positional info and data removed for
brevity):
{
type: 'root',
children: [
{
type: 'paragraph',
children: [
{type: 'text', value: 'Lift('},
{type: 'inlineMath', value: 'L', data: {/* … */}},
{type: 'text', value: ') can be determined by Lift Coefficient ('},
{type: 'inlineMath', e: 'C_L', data: {/* … */}},
{type: 'text', value: ') like the following equation.'}
]
},
{type: 'math', meta: null, value: 'L = \\frac{1}{2} \\rho v^2 S C_L', data: {/* … */}}
]
}
Lift($L$) can be determined by Lift Coefficient ($C_L$) like the following equation.
$$
L = \frac{1}{2} \rho v^2 S C_L
$$
This package exports the identifiers mathFromMarkdown
and mathToMarkdown
.
There is no default export.
mathFromMarkdown()
Create an extension for mdast-util-from-markdown
.
Extension for mdast-util-from-markdown
(FromMarkdownExtension
).
mathToMarkdown(options?)
Create an extension for mdast-util-to-markdown
.
options
(ToOptions
, optional)
— configurationExtension for mdast-util-to-markdown
(ToMarkdownExtension
).
InlineMath
Math (text) (TypeScript type).
import type {Literal} from 'mdast'
interface InlineMath extends Literal {
type: 'inlineMath'
}
Math
Math (flow) (TypeScript type).
import type {Literal} from 'mdast'
interface Math extends Literal {
type: 'math'
meta?: string | undefined | null
}
ToOptions
Configuration (TypeScript type).
singleDollarTextMath
(boolean
, default: true
)
— whether to support math (text) with a single dollar.
Single dollars work in Pandoc and many other places, but often interfere
with “normal” dollars in text.
If you turn this off, you can still use two or more dollars for text mathThis plugin integrates with mdast-util-to-hast
.
When mdast is turned into hast the math nodes are turned into
<span class="math math-inline">…</span>
and
<div class="math math-display">…</div>
elements.
See Syntax in micromark-extension-frontmatter
.
The following interfaces are added to mdast by this utility.
Math
interface Math <: Literal {
type: "code"
meta: string?
}
Math (Literal) represents a block of math, such as LaTeX mathematical expressions.
Math can be used where flow content is expected.
Its content is represented by its value
field.
This node relates to the phrasing content concept InlineMath.
A meta
field can be present.
It represents custom information relating to the node.
For example, the following markdown:
$$
L = \frac{1}{2} \rho v^2 S C_L
$$
Yields:
{
type: 'math',
meta: null,
value: 'L = \\frac{1}{2} \\rho v^2 S C_L',
data: {/* … */}
}
InlineMath
interface InlineMath <: Literal {
type: "inlineMath"
}
InlineMath (Literal) represents a fragment of computer code, such as a file name, computer program, or anything a computer could parse.
InlineMath can be used where phrasing content
is expected.
Its content is represented by its value
field.
This node relates to the flow content concept Math.
For example, the following markdown:
$L$
Yields:
{type: 'inlineMath', value: 'L', data: {/* … */}}
FlowContent
(math)type FlowContentMath = Math | FlowContent
PhrasingContent
(math)type PhrasingMath = InlineMath | PhrasingContent
This package is fully typed with TypeScript.
It exports the additional types InlineMath
,
Math
, and ToOptions
.
It also registers the node types with @types/mdast
.
If you’re working with the syntax tree, make sure to import this utility
somewhere in your types, as that registers the new node types in the tree.
/**
* @typedef {import('mdast-util-math')}
*/
import {visit} from 'unist-util-visit'
/** @type {import('mdast').Root} */
const tree = getMdastNodeSomeHow()
visit(tree, (node) => {
// `node` can now be one of the nodes for math.
})
Projects maintained by the unified collective are compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. Our projects sometimes work with older versions, but this is not guaranteed.
This plugin works with mdast-util-from-markdown
version 1+ and
mdast-util-to-markdown
version 1+.
remark-math
— remark plugin to support mathmicromark-extension-math
— micromark extension to parse mathSee contributing.md
in syntax-tree/.github
for
ways to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
FAQs
mdast extension to parse and serialize math
The npm package mdast-util-math receives a total of 415,443 weekly downloads. As such, mdast-util-math popularity was classified as popular.
We found that mdast-util-math demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.