@quasar/quasar-ui-qmarkdown
Version:
Display inline markdown in your Quasar App
114 lines • 3.92 kB
JSON
{
"q-markdown/src": {
"type": "string",
"description": "[optional] Pass markdown in as a property"
},
"q-markdown/no-blockquote": {
"type": "boolean",
"description": "Disable blockquote conversion"
},
"q-markdown/no-breaks": {
"type": "boolean",
"description": "Disable conversion of `\\n` into `<br>`"
},
"q-markdown/no-container": {
"type": "boolean",
"description": "Disable container conversion"
},
"q-markdown/no-highlight": {
"type": "boolean",
"description": "Disable code highlighter"
},
"q-markdown/no-html": {
"type": "boolean",
"description": "Disable HTML tags in source"
},
"q-markdown/no-image": {
"type": "boolean",
"description": "Disable image conversion"
},
"q-markdown/no-line-numbers": {
"type": "boolean",
"description": "Disable line numbers on code blocks"
},
"q-markdown/no-link": {
"type": "boolean",
"description": "Disable conversion of links"
},
"q-markdown/no-linkify": {
"type": "boolean",
"description": "Disable auto-convert URL-like text to links"
},
"q-markdown/no-heading-anchor-links": {
"type": "boolean",
"description": "Your headings will automatically be turned into anchor links, unless you use this property (default is H1-H3)"
},
"q-markdown/no-typographer": {
"type": "boolean",
"description": "Disable language-neutral replacement + quotes beautification"
},
"q-markdown/line-number-alt": {
"type": "string",
"description": "Provide an alternative character to be used instead of line numbers - must be 1 char in length"
},
"q-markdown/toc": {
"type": "boolean",
"description": "Set to true if you want a TOC automatically generated"
},
"q-markdown/toc-start": {
"type": "number",
"description": "The starting Header number for generating a TOC"
},
"q-markdown/toc-end": {
"type": "number",
"description": "The ending Header number for generating a TOC. Must be greater than tocStart"
},
"q-markdown/content-class": {
"type": "array|object|string",
"description": "Class definitions to be attributed to the markdown container"
},
"q-markdown/content-style": {
"type": "array|object|string",
"description": "Style definitions to be attributed to the markdown container"
},
"q-markdown/no-noopener": {
"type": "boolean",
"description": "All external links will have the `rel=\"noopener\"` applied if this is not set"
},
"q-markdown/no-noreferrer": {
"type": "boolean",
"description": "All external links will have the `rel=\"noreferrer\"` applied if this is not set"
},
"q-markdown/show-copy": {
"type": "boolean",
"description": "Use this property to turn on `Copy to Clipboard` functionality"
},
"q-markdown/copy-icon": {
"type": "string",
"description": "Change the default icon used for `Copy to Clipboard`"
},
"q-markdown/done-icon": {
"type": "string",
"description": "Change the default icon used for notify response after `Copy to Clipboard`"
},
"q-markdown/no-copy-tooltip": {
"type": "boolean",
"description": "Turns off the tooltip associated with the `Copy to Clipboard` icon"
},
"q-markdown/copy-tooltip-text": {
"type": "string",
"description": "Change the tooltip text associated with the `Copy to Clipboard` icon"
},
"q-markdown/copy-response-text": {
"type": "string",
"description": "Change the response text associated with the `Copy to Clipboard` icon (note: you **must** have the `Notify` plugin added to your quasar.conf.js)"
},
"q-markdown/fix-cr": {
"type": "boolean",
"description": "if this is set to `true` then the following regEx is run on the `src` property: `props.src.replace(/\\n/gi, '\\n')`"
},
"q-markdown/plugins": {
"type": "array",
"description": "[optional] An array of `markdown-it!` plugins."
}
}