Awesome
hast-util-to-xast
hast (HTML) utility to transform to xast (XML).
Contents
- What is this?
- When should I use this?
- Install
- Use
- API
- Types
- Compatibility
- Security
- Related
- Contribute
- License
What is this?
This package is a utility that takes a hast (HTML) syntax tree as input and turns it into a xast (XML) syntax tree. This package also supports embedded MDX nodes.
When should I use this?
This project is useful when you want to deal with ASTs, and for some reason, have to deal with XML. One example of this is for EPUB (digital books).
There is no inverse of this utility, because not all XML is HTML.
A similar package, hast-util-to-estree
, can turn
hast into estree (JavaScript) as JSX, which has some similarities to XML.
Install
This package is ESM only. In Node.js (version 16+), install with npm:
npm install hast-util-to-xast
In Deno with esm.sh
:
import {toXast} from "https://esm.sh/hast-util-to-xast@3"
In browsers with esm.sh
:
<script type="module">
import {toXast} from "https://esm.sh/hast-util-to-xast@3?bundle"
</script>
Use
Say our document example.html
contains:
<!doctypehtml>
<title>Hello, World!</title>
<h1>๐, ๐</h1>
โฆand our module example.js
looks as follows:
import fs from 'node:fs/promises'
import {fromHtml} from 'hast-util-from-html'
import {toXast} from 'hast-util-to-xast'
import {toXml} from 'xast-util-to-xml'
// Get the HTML syntax tree:
const hast = fromHtml(await fs.readFile('example.html'))
// Turn hast to xast:
const xast = toXast(hast)
// Serialize xast:
console.log(toXml(xast))
โฆnow running node example.js
yields:
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><title>Hello, World!</title>
</head><body><h1>๐, ๐</h1>
</body></html>
API
This package exports the identifier toXast
.
There is no default export.
toXast(tree[, options])
Turn a hast tree into a xast tree.
Parameters
Returns
xast tree (XastNode
).
Options
Configuration (TypeScript type).
Fields
space
Which space the document is in (Space
, default: 'html'
).
When an <svg>
element is found in the HTML space, this package already
automatically switches to and from the SVG space when entering and exiting it.
You can also switch explicitly with xmlns
properties in hast, but note that
only HTML and SVG are supported.
Space
Namespace (TypeScript type).
Type
type Space = 'html' | 'svg'
Types
This package is fully typed with TypeScript.
It exports the additional types Options
and
Space
.
Compatibility
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, hast-util-to-xast@^3
,
compatible with Node.js 16.
Security
Both HTML and XML can be dangerous languages: donโt trust user-provided data.
Use hast-util-santize
to make the hast tree safe before
using this utility.
Related
hastscript
โ create hast (HTML or SVG) treesxastscript
โ create xast (XML) treesxast-util-to-xml
โ serialize as XML
Contribute
See 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.
License
MIT ยฉ Titus Wormer
<!-- Definitions -->