UNPKG

kramed

Version:

A markdown (kramdown compatible) parser and compiler. Built for speed.

11 lines (8 loc) 211 B
var blocks = require('./block'); var inline = require('./inline'); function annotate(src) { return blocks(src); } module.exports = annotate; module.exports.blocks = blocks; module.exports.inline = inline;