(path) create a resolve path service to manage …

resolve path like ../..
This commit is contained in:
2021-03-21 15:26:27 +01:00
parent 299bc75529
commit 3749588b0b
7 changed files with 91 additions and 38 deletions

View File

@@ -3,11 +3,11 @@ import markdownItClass from '@toycode/markdown-it-class'
const md = new MarkdownIt().use(markdownItClass, {
h1: ['title', 'is-1'],
h2: ['subtitle', 'is-2'],
h3: ['subtitle', 'is-3'],
h4: ['subtitle', 'is-4'],
h5: ['subtitle', 'is-5'],
h6: ['subtitle', 'is-6'],
h2: ['title', 'is-2'],
h3: ['title', 'is-3'],
h4: ['title', 'is-4'],
h5: ['title', 'is-5'],
h6: ['title', 'is-6'],
table: ['table', 'is-striped', 'is-hoverable', 'is-fullwidth']
})