Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « markdownit « src - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aaeafa4c92adf37f0389653c8bb3d6f41960e30d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import MarkdownIt from 'markdown-it'
import taskLists from 'markdown-it-task-lists'
import underline from './underline'
import splitMixedLists from './splitMixedLists'

const markdownit = MarkdownIt('commonmark', { html: false, breaks: false })
	.enable('strikethrough')
	.use(taskLists, { enable: true, labelAfter: true })
	.use(splitMixedLists)
	.use(underline)

export default markdownit