mirror of
https://github.com/zadam/trilium.git
synced 2025-12-19 22:59:53 +01:00
10 lines
272 B
JavaScript
10 lines
272 B
JavaScript
|
|
import strikethrough from './strikethrough'
|
||
|
|
import tables from './tables'
|
||
|
|
import taskListItems from './task-list-items'
|
||
|
|
|
||
|
|
function gfm (turndownService) {
|
||
|
|
turndownService.use([strikethrough, tables, taskListItems])
|
||
|
|
}
|
||
|
|
|
||
|
|
export { gfm, strikethrough, tables, taskListItems }
|