wikijs-fork/server/modules/rendering/markdown-core/definition.yml

64 lines
1.4 KiB
YAML
Raw Normal View History

2018-09-10 00:33:10 +00:00
key: markdownCore
title: Core
description: Basic Markdown Parser
author: requarks.io
input: markdown
output: html
icon: mdi-language-markdown
2018-09-10 00:33:10 +00:00
props:
allowHTML:
type: Boolean
default: true
title: Allow HTML
hint: Enable HTML tags in content.
2020-04-13 01:19:22 +00:00
order: 1
2020-05-09 02:51:32 +00:00
public: true
2018-09-10 00:33:10 +00:00
linkify:
type: Boolean
default: true
title: Automatically convert links
hint: Links will automatically be converted to clickable links.
2020-04-13 01:19:22 +00:00
order: 2
2020-05-09 02:51:32 +00:00
public: true
2018-09-10 00:33:10 +00:00
linebreaks:
type: Boolean
default: true
title: Automatically convert line breaks
hint: Add linebreaks within paragraphs.
2020-04-13 01:19:22 +00:00
order: 3
2020-05-09 02:51:32 +00:00
public: true
underline:
2018-09-10 00:33:10 +00:00
type: Boolean
default: false
title: Underline Emphasis
hint: Enable text underlining by using _underline_ syntax.
2020-04-13 01:19:22 +00:00
order: 4
2020-05-09 02:51:32 +00:00
public: true
typographer:
type: Boolean
default: false
title: Typographer
hint: Enable some language-neutral replacement + quotes beautification.
order: 5
public: true
2018-09-10 00:33:10 +00:00
quotes:
type: String
default: English
title: Quotes style
hint: When typographer is enabled. Double + single quotes replacement pairs. e.g. «»„“ for Russian, „“‚‘ for German, etc.
order: 6
2018-09-10 00:33:10 +00:00
enum:
- Chinese
- English
- French
- German
- Greek
- Japanese
- Hungarian
- Polish
- Portuguese
- Russian
- Spanish
- Swedish
2020-05-09 02:51:32 +00:00
public: true