.. | ||
index.d.ts | ||
index.js | ||
license | ||
package.json | ||
readme.md |
mdast-util-gfm-strikethrough
Extension for mdast-util-from-markdown
and/or
mdast-util-to-markdown
to support GitHub flavored markdown
strikethrough (like this) in mdast.
When parsing (from-markdown
), must be combined with
micromark-extension-gfm-strikethrough
.
When to use this
Use this if you’re dealing with the AST manually.
It’s might be better to use remark-gfm
with remark,
which includes this but provides a nicer interface and makes it easier to
combine with hundreds of plugins.
Install
This package is ESM only:
Node 12+ is needed to use it and it must be import
ed instead of require
d.
npm:
npm install mdast-util-gfm-strikethrough
Use
Say our module, example.js
, looks as follows:
import {fromMarkdown} from 'mdast-util-from-markdown'
import {toMarkdown} from 'mdast-util-to-markdown'
import {gfmStrikethrough} from 'micromark-extension-gfm-strikethrough'
import {gfmStrikethroughFromMarkdown, gfmStrikethroughToMarkdown} from 'mdast-util-gfm-strikethrough'
const doc = '*Emphasis*, **importance**, and ~~strikethrough~~.'
const tree = fromMarkdown(doc, {
extensions: [gfmStrikethrough()],
mdastExtensions: [gfmStrikethroughFromMarkdown]
})
console.log(tree)
const out = toMarkdown(tree, {extensions: [gfmStrikethroughToMarkdown]})
console.log(out)
Now, running node example
yields:
{
type: 'root',
children: [
{
type: 'paragraph',
children: [
{type: 'emphasis', children: [{type: 'text', value: 'Emphasis'}]},
{type: 'text', value: ', '},
{type: 'strong', children: [{type: 'text', value: 'importance'}]},
{type: 'text', value: ', and '},
{type: 'delete', children: [{type: 'text', value: 'strikethrough'}]},
{type: 'text', value: '.'}
]
}
]
}
*Emphasis*, **importance**, and ~~strikethrough~~.
API
This package exports the following identifier: gfmStrikethroughFromMarkdown
,
gfmStrikethroughToMarkdown
.
There is no default export.
gfmStrikethroughFromMarkdown
gfmStrikethroughToMarkdown
Support strikethrough.
The exports are extensions, respectively
for mdast-util-from-markdown
and
mdast-util-to-markdown
.
Related
remarkjs/remark
— markdown processor powered by pluginsremarkjs/remark-gfm
— remark plugin to support GFMmicromark/micromark
— the smallest commonmark-compliant markdown parser that existsmicromark/micromark-extension-gfm-strikethrough
— micromark extension to parse GFM strikethroughsyntax-tree/mdast-util-from-markdown
— mdast parser usingmicromark
to create mdast from markdownsyntax-tree/mdast-util-to-markdown
— mdast serializer to create markdown from mdast
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.