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: da4a6fe6d4b0168932edbc302cd21df762616965 (plain)
1
2
3
4
5
6
7
8
import MarkdownIt from 'markdown-it'
import taskLists from 'markdown-it-task-lists'

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

export default markdownit