mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
418 B
20 lines
418 B
8 years ago
|
/**
|
||
|
* @author Titus Wormer
|
||
|
* @copyright 2015-2016 Titus Wormer
|
||
|
* @license MIT
|
||
|
* @module remark
|
||
|
* @fileoverview Markdown processor powered by plugins.
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
/* eslint-env commonjs */
|
||
|
|
||
|
/* Dependencies. */
|
||
|
var unified = require('unified');
|
||
|
var parse = require('remark-parse');
|
||
|
var stringify = require('remark-stringify');
|
||
|
|
||
|
/* Expose. */
|
||
|
module.exports = unified().use(parse).use(stringify).abstract();
|