mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-03 05:57:47 +08: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 }
|