mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
16 lines
396 B
JavaScript
16 lines
396 B
JavaScript
|
import highlightedCodeBlock from './highlighted-code-block'
|
||
|
import strikethrough from './strikethrough'
|
||
|
import tables from './tables'
|
||
|
import taskListItems from './task-list-items'
|
||
|
|
||
|
function gfm (turndownService) {
|
||
|
turndownService.use([
|
||
|
highlightedCodeBlock,
|
||
|
strikethrough,
|
||
|
tables,
|
||
|
taskListItems
|
||
|
])
|
||
|
}
|
||
|
|
||
|
export { gfm, highlightedCodeBlock, strikethrough, tables, taskListItems }
|