Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
mdast is a markdown processor powered by plugins. Lots of tests. Node, io.js, and the browser. 100% coverage.
mdast is not just another markdown to HTML compiler. It can generate, and reformat, markdown too. It is powered by plugins to do all kinds of things: validate your markdown, add links for GitHub references, or add a table of contents.
The project contains both an extensive JavaScript API for parsing, modifying, and compiling markdown, and a friendly Command Line Interface making it easy to validate, prepare, and compile markdown in a build step.
npm:
npm install mdast
Read more about alternatives ways to install and use »
Load dependencies:
var mdast = require('mdast');
var html = require('mdast-html');
var yamlConfig = require('mdast-yaml-config');
Use plugins:
var processor = mdast().use(yamlConfig).use(html);
Process the document:
var doc = processor.process([
'---',
'mdast:',
' commonmark: true',
'---',
'',
'2) Some *emphasis*, **strongness**, and `code`.'
].join('\n'));
Yields:
<ol start="2">
<li>Some <em>emphasis</em>, <strong>strongness</strong>, and <code>code</code>.</li>
</ol>
Parse a markdown document, apply plugins to it, and compile it into something else.
Signatures
doc = mdast.process(value, options?, done?)
.Parameters
value
(string
) — Markdown document;
options
(Object
) — Settings:
gfm
(boolean
, default: true
) — See GitHub Flavoured Markdown;yaml
(boolean
, default: true
) — See YAML;commonmark
(boolean
, default: false
) — See CommonMark;footnotes
(boolean
, default: false
) — See Footnotes;pedantic
(boolean
, default: false
) — See Pedantic;breaks
(boolean
, default: false
) — See Breaks;entities
(boolean
, default: false
) — See Encoding Entities;setext
(boolean
, default: false
) — See Setext Headings;closeAtx
(boolean
, default: false
) — See Closed ATX Headings;looseTable
(boolean
, default: false
) — See Loose Tables;spacedTable
(boolean
, default: true
) — See Spaced Tables;fence
("~"
or "`"
, default: "`"
) — See Fence;fences
(boolean
, default: false
) — See Fences;bullet
("-"
, "*"
, or "+"
, default: "-"
) — See List Item Bullets;listItemIndent
("tab"
, "mixed"
or "1"
, default: "tab"
) — See List Item Indent;incrementListMarker
(boolean
, default: true
) — See List Marker Increase;rule
("-"
, "*"
, or "_"
, default: "*"
) — See Horizontal Rules;ruleRepetition
(number
, default: 3
) — See Horizontal Rules;ruleSpaces
(boolean
, default true
) — See Horizontal Rules;strong
("_"
, or "*"
, default "*"
) — See Emphasis Markers;emphasis
("_"
, or "*"
, default "_"
) — See Emphasis Markers.position
(boolean
, default: true
) — See Position;done
(function(Error?, string?)
) — Callback invoked when the output
is generated with either an error, or a result. Only strictly needed when
asynchronous plugins are used.
All options (including the options object itself) can be null
or undefined
to default to their default values.
Returns
string
or null
: A document. Formatted in markdown by default, or in
whatever a plugin generates.
The result is null
if a plugin is asynchronous, in which case the callback
done
should’ve been passed (do not worry: plugin creators make sure you know
its asynchronous).
Change the way mdast
works by using a plugin
.
Signatures
processor = mdast.use(plugin, options?)
;processor = mdast.use(plugins)
.Parameters
plugin
(Function
) — A Plugin;plugins
(Array.<Function>
) — A list of Plugins;options
(Object?
) — Passed to plugin. Specified by its documentation.Returns
Object
: an instance of MDAST: The returned object functions just like
mdast (it has the same methods), but caches the use
d plugins. This
provides the ability to chain use
calls to use multiple plugins, but
ensures the functioning of the mdast module does not change for other
dependents.
Install:
npm install --global mdast
Use:
Usage: mdast [options] <file|dir ...>
Markdown processor powered by plugins
Options:
-h, --help output usage information
-V, --version output the version number
-o, --output [path] specify output location
-c, --config-path <path> specify configuration location
-i, --ignore-path <path> specify ignore location
-s, --setting <settings> specify settings
-u, --use <plugins> use transform plugin(s)
-e, --ext <extensions> specify extensions
-w, --watch watch for changes and reprocess
-a, --ast output AST information
-q, --quiet output only warnings and errors
-S, --silent output only errors
-f, --frail exit with 1 on warnings
--file-path <path> specify file path to process as
--no-stdout disable writing to stdout
--no-color disable color in output
--no-rc disable configuration from .mdastrc
--no-ignore disable ignore from .mdastignore
Usage:
# Process `readme.md`
$ mdast readme.md -o readme-new.md
# Pass stdin through mdast, with settings, to stdout
$ mdast -s "setext: true, bullet: \"*\"" < readme.md > readme-new.md
# Use a plugin (with options)
$ npm install mdast-toc
$ mdast --use toc=heading:"contents" readme.md -o
# Rewrite markdown in a directory
$ mdast . -o
See also: man 1 mdast, man 3 mdast, man 3 mdastplugin,
man 5 mdastrc, man 5 mdastignore, man 7 mdastsetting,
man 7 mdastconfig, man 7 mdastnode, man 7 mdastplugin.
This project was initially a fork of marked.
Copyright (c) 2011-2014, Christopher Jeffrey. (MIT License)
FAQs
Markdown Abstract Syntax Tree format
We found that mdast demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.