markdown-it-charts icon indicating copy to clipboard operation
markdown-it-charts copied to clipboard

markdown-it charts plugin

Results 1 markdown-it-charts issues
Sort by recently updated
recently updated
newest added

``` var markdownItCharts = window.markdownItCharts.markdownItCharts; var md = window.markdownit({ highlight: function (str, lang) { if (lang && hljs.getLanguage(lang)) { try { return '' + hljs.highlight(lang, str, true).value + ''; }...