Compiler for unified. Serializes mdast syntax trees to Markdown. Used in the remark processor but can be used on its own as well. Can be extended to change how Markdown is serialized.
npm:
npm install remark-stringify
var unified = require('unified') var createStream = require('unified-stream') var html = require('rehype-parse') var rehype2remark = require('rehype-remark') var stringify = require('remark-stringify') var processor = unified() .use(html) .use(rehype2remark) .use(stringify, { bullet: '*', fence: '~', fences: true, incrementListMarker: false }) process.stdin.pipe(createStream(processor)).pipe(process.stdout)
See unified for more examples »
processor().use(stringify[, options])Configure the processor to serialize mdast syntax trees to Markdown.
optionsOptions can be passed directly, or passed later through processor.data().
options.gfmSerialize with the required escapes for GFM compatible Markdown (boolean, default: true).
|, for tables):, for literal URLs)~, for strike-through)options.commonmarkSerialize for CommonMark compatible Markdown (boolean, default: false).
options.pedantic⚠️ Pedantic was previously used to mimic old-style Markdown mode: no tables, no fenced code, and with many bugs. It’s currently still “working”, but please do not use it, it’ll be removed in the future.
options.entitiesHow to serialize entities (string or boolean, default: false):
true — Entities are generated for special HTML characters (& > &) and non-ASCII characters (© > ©). If named entities are not (widely) supported, numbered character references are used (’ > ’)'numbers' — Numbered entities are generated (& > &) for special HTML characters and non-ASCII characters'escape' — Special HTML characters are encoded (& > &, ’ > ’), non-ASCII characters not (ö persists)options.setextSerialize headings, when possible, in Setext-style (boolean, default: false). Uses = for level one headings and - for level two headings. Other heading levels are serialized as ATX (respecting closeAtx).
options.closeAtxSerialize ATX headings with the same amount of closing hashes as opening hashes (boolean, default: false).
options.tableCellPaddingCreate tables with a space between cell delimiters (|) and content (boolean, default: true).
options.tablePipeAlignAlign the delimiters (|) between table cells so that they all align nicely and form a grid (boolean, default: true).
options.stringLengthFunction passed to markdown-table to detect the length of a table cell (Function, default: s => s.length). Used to pad tables.
options.fenceMarker to use for fenced code blocks ('~' or '`', default: '`').
options.fencesCreate code blocks with a fence instead of indentation if they have no info string (boolean, default: false).
When false, code blocks are indented. Code blocks with an info string are always fenced.
options.bulletMarker to use for the bullet of unordered list items ('-', '*', or '+', default: '-').
options.listItemIndentStyle of indentation for list items ('tab', 'mixed' or '1', default: 'tab').
'tab': use a tab stops (4 spaces)'1': use one space'mixed': use 1 for tight and tab for loose list itemsoptions.incrementListMarkerIncrement ordered list item numbers (boolean, default: true).
When false, all list item numbers will be the same.
options.ruleMarker to use for thematic breaks / horizontal rules ('-', '*', or '_', default: '*').
options.ruleRepetitionNumber of markers to use for thematic breaks / horizontal rules (number, default: 3). Musts be 3 or more.
options.ruleSpacesPlace a space between thematic break (horizontal rule) markers (boolean, default true).
options.strongMarker to use for importance ('_' or '*', default '*').
options.emphasisMarker to use for emphasis ('_' or '*', default '_').
stringify.CompilerAccess to the compiler, if you need it.
CompilerIf the remark-stringify plugin is used, it adds a Compiler constructor function to the processor. Other plugins can add visitors to its prototype to change how Markdown is serialized.
The below plugin modifies a visitor to add an extra blank line before headings with a rank of 2.
module.exports = gap function gap() { var Compiler = this.Compiler var visitors = Compiler.prototype.visitors var original = visitors.heading visitors.heading = heading function heading(node) { return (node.depth === 2 ? '\n' : '') + original.apply(this, arguments) } }
Compiler#visitorsMap of types to visitors (Object.<Function>).
function visitor(node[, parent])Serialize node.
node (Node) — Node to compileparent (Parent, optional) — Parent of node. Not available on the root nodestring — Serialized given node.
As Markdown is sometimes used for HTML, and improper use of HTML can open you up to a cross-site scripting (XSS) attack, use of remark can also be unsafe. When going to HTML, use remark in combination with the rehype ecosystem, and use rehype-sanitize to make the tree safe.
Use of remark plugins could also open you up to other attacks. Carefully assess each plugin and the risks involved in using them.
See contributing.md in remarkjs/.github for ways to get started. See support.md for ways to get help. Ideas for new plugins and tools can be posted in remarkjs/ideas.
A curated list of awesome remark resources can be found in awesome remark.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.