diff --git a/src/App.svelte b/src/App.svelte index 2d08e2f..be54129 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -2,7 +2,14 @@ import Importabular from "importabular" import showdown from "showdown" - let converter = new showdown.Converter() + let converter = new showdown.Converter({ + simplifiedAutoLink: true, // automatically convert links... + excludeTrailingPunctuationFromURLs: true, // ...but not the trailing punctuation + openLinksInNewWindow: true, // don't forget to open in new window! + simpleLineBreaks: true, // use two line breaks to start a new paragraph + emoji: true, // because why not 😉 + strikethrough: true, // ~~that also~~ + }) let editor