summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-markdown/lib/annotate.js
blob: 8cc7f89c15a8cbf6b97a0e98f6f2b43aed7b368b (plain)
1
2
3
4
5
6
7
8
9
10
var blocks = require('./annotate_blocks');
var inline = require('./annotate_inline');

function annotate(src) {
    return blocks(src);
}

module.exports = annotate;
module.exports.blocks = blocks;
module.exports.inline = inline;