remarkable
remarkable copied to clipboard
Configure for only bold and italic
Hi, I searched through the old issues here but was not able to find what I was looking for. Anyways, I would like to use remarkable and configure it to only parse bold and italic (using strong and em). I assume this is easy enough to setup in the configuration, but I am struggling to figure it out with reading just the docs.
Thanks for the help!
Something similar to this should work:
// Commonmark default options
export default {
options: {
html: true, // Enable HTML tags in source
xhtmlOut: true, // Use '/' to close single tags (<br />)
breaks: false, // Convert '\n' in paragraphs into <br>
langPrefix: 'language-', // CSS language prefix for fenced blocks
linkTarget: '', // set target to open link in
// Enable some language-neutral replacements + quotes beautification
typographer: false,
// Double + single quotes replacement pairs, when typographer enabled,
// and smartquotes on. Set doubles to '«»' for Russian, '„“' for German.
quotes: '“”‘’',
// Highlighter function. Should return escaped HTML,
// or '' if input not changed
//
// function (/*str, lang*/) { return ''; }
//
highlight: null,
maxNesting: 20 // Internal protection, recursion limit
},
components: {
core: {
rules: []
},
block: {
rules: []
},
inline: {
rules: ['emphasis']
}
}
};