remarkable icon indicating copy to clipboard operation
remarkable copied to clipboard

Configure for only bold and italic

Open tylersayshi opened this issue 4 years ago • 1 comments

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!

tylersayshi avatar Oct 20 '20 21:10 tylersayshi

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']
    }
  }
};

caugner avatar Sep 05 '21 18:09 caugner