definition.yml 1.08 KB
Newer Older
1 2 3 4 5 6
key: markdownCore
title: Core
description: Basic Markdown Parser
author: requarks.io
input: markdown
output: html
7
icon: mdi-markdown
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
props:
  allowHTML:
    type: Boolean
    default: true
    title: Allow HTML
    hint: Enable HTML tags in content
  linkify:
    type: Boolean
    default: true
    title: Automatically convert links
    hint: Links will automatically be converted to clickable links.
  linebreaks:
    type: Boolean
    default: true
    title: Automatically convert line breaks
    hint: Add linebreaks within paragraphs.
  typographer:
    type: Boolean
    default: false
    title: Typographer
    hint: Enable some language-neutral replacement + quotes beautification
  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.
    enum:
      - Chinese
      - English
      - French
      - German
      - Greek
      - Japanese
      - Hungarian
      - Polish
      - Portuguese
      - Russian
      - Spanish
      - Swedish