You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{render,addRule}from'slimdown-js';// Add highlight syntaxaddRule(/==(.*?)==/g,'<mark>$1</mark>');// Add custom containersaddRule(/:::(\w+)\n([\s\S]*?)\n:::/g,'<div class="$1">$2</div>');constmarkdown=`==Highlighted text==:::warningThis is a warning box:::`;console.log(render(markdown));
Configuration Options
import{render}from'slimdown-js';constmarkdown='Visit [my site](https://example.com)';// Remove paragraph wrappersconstnoPara=render(markdown,true);// Open links in new tabsconstexternalLinks=render(markdown,false,true);// Both optionsconstcustomized=render(markdown,true,true);