Notes/src/gfm.js

16 lines
396 B
JavaScript
Raw Normal View History

2017-11-24 11:19:37 +00:00
import highlightedCodeBlock from './highlighted-code-block'
2017-11-10 14:21:46 +00:00
import strikethrough from './strikethrough'
import tables from './tables'
import taskListItems from './task-list-items'
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 }