1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
markdown-it-raw-table/lib/index.js
2021-01-10 16:52:37 +09:00

7 lines
192 B
JavaScript

const rawTable = require('./table.js');
module.exports = function rawTablePlugin(md) {
md.block.ruler.before('table', 'raw-table', rawTable, {
alt: ['paragraph', 'reference'],
});
};