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.
 
 
 
 
 
 

19 lines
418 B

/**
* @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();