💄 (headers) smaller headers

This commit is contained in:
2021-03-22 00:14:45 +01:00
parent 442adea310
commit cb5ff68866

View File

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