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

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

export default markdownit