16 lines
408 B
JavaScript
Raw Normal View History

import highlightedCodeBlock from './highlighted-code-block.js'
import strikethrough from './strikethrough.js'
import tables from './tables.js'
import taskListItems from './task-list-items.js'
2017-11-10 14:21:46 +00:00
function gfm (turndownService) {
2017-11-24 11:19:37 +00:00
turndownService.use([
highlightedCodeBlock,
strikethrough,
tables,
taskListItems
])
2017-11-10 14:21:46 +00:00
}
2017-11-24 11:19:37 +00:00
export { gfm, highlightedCodeBlock, strikethrough, tables, taskListItems }