
* Add `html-parser-api` and `html-parser-impl` modules * Add `HtmlEmptyTagReplacement` * Implement Appendable and CharSequence in SpannableBuilder * Renamed library modules to reflect maven artifact names * Rename `markwon-syntax` to `markwon-syntax-highlight` * Add HtmlRenderer asbtraction * Add CssInlineStyleParser * Fix Theme#listItemColor and OL * Fix task list block parser to revert parsing state when line is not matching * Defined test format files * image-loader add datauri parser * image-loader add support for inline data uri image references * Add travis configuration * Fix image with width greater than canvas scaled * Fix blockquote span * Dealing with white spaces at the end of a document * image-loader add SchemeHandler abstraction * Add sample-latex-math module
37 lines
1.3 KiB
JavaScript
37 lines
1.3 KiB
JavaScript
module.exports = {
|
|
base: '/Markwon/',
|
|
title: 'Markwon',
|
|
description: 'Android markdown library based on commonmark specification',
|
|
head: [
|
|
['link', {rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png?v=1'}],
|
|
['link', {rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png?v=1'}],
|
|
['link', {rel: 'icon', href: '/favicon.ico?v=1'}],
|
|
['link', {rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png?v=1'}],
|
|
['link', {rel: 'manifest', href: '/manifest.json?v=1'}],
|
|
],
|
|
themeConfig: {
|
|
nav: [
|
|
{ text: 'Install', link: '/docs/install.md' },
|
|
{ text: 'Changelog', link: '/CHANGELOG.md' },
|
|
{ text: 'Github', link: 'https://github.com/noties/Markwon' }
|
|
],
|
|
sidebar: [
|
|
'/',
|
|
'/docs/getting-started.md',
|
|
'/docs/configure.md',
|
|
'/docs/theme.md',
|
|
'/docs/factory.md',
|
|
'/docs/image-loader.md',
|
|
'/docs/syntax-highlight.md',
|
|
'/docs/html.md',
|
|
'/docs/view.md'
|
|
],
|
|
sidebarDepth: 2,
|
|
lastUpdated: true
|
|
},
|
|
markdown: {
|
|
config: md => {
|
|
md.use(require('markdown-it-task-lists'));
|
|
}
|
|
}
|
|
} |