Coder Social home page Coder Social logo

remark's Introduction

mdast

Build Status Coverage Status Inline docs

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’s 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 stringifying markdown, and a friendly Command Line Interface making it easy to validate, prepare, and compile markdown in a build step.

Table of Contents

Installation

npm:

npm install mdast

Read more about alternatives ways to install and use »

Usage

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>

API

Get Started with the API »

mdast.process(value, options?, done?)

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:

  • done (function(Error?, string?)) — Callback invoked when the output is generated with either an error, or a result. Only strictly needed when async 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 (don’t worry: plugin creators make sure you know its async).

mdast.use(plugin, options?)

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 used 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.

CLI

Get Started with the CLI »

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.

License

MIT © Titus Wormer

This project was initially a fork of marked.

Copyright (c) 2011-2014, Christopher Jeffrey. (MIT License)

remark's People

Contributors

wooorm avatar chjj avatar chriswren avatar eush77 avatar mithgol avatar lepture avatar kitsonk avatar isaacs avatar minrk avatar ben-eb avatar selfcontained avatar ianstormtaylor avatar anandthakker avatar briancavalier avatar guybedford avatar ifraixedes avatar thejhh avatar jasonkarns avatar juliantaylor avatar comuttun avatar mkozhukh avatar zaggino avatar matsko avatar apaleslimghost avatar moox avatar mikeal avatar omeid avatar wzr1337 avatar tmcw avatar odbol avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.