mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 10:22:29 +08: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 }
|