This will be a test post for markdown, as I'm switching to a faster markdown renderer that will allow me to do some cool stuff, like allow expanding images and running my code in markdown.
<script>alert('if you see this in a popup, your parser is not sanitizing HTML! this is a major security vulnerabillity, contact your frontend's maintainer.')</script>
just some regular text
list item 1
list item 2
ordered list
it's pretty useless
this is a spoiler with more **complex** stuff
wow this is so cool
it even has header support now
Item
In Stock
Price
Python Hat
True
23.99
SQL Hat
True
23.99
Codecademy Tee
False
19.99
Codecademy Hoodie
False
42.99
<img src="" onerror="alert('your client has a serious XSS vulnerability if this opened in a popup');">
What one did you go with? I switched to magidoc/plugin-svelte-marked and have been pretty happy with it. The only thing I lost were sub- and superscript.
Autolinking? You should be able to just do a custom renderer for links to do what you need. Unless I'm misunderstanding.
I had to do custom renderers for Links, Code (to integrate highlight.js), spoilers (custom container), and images (to replicate functionality of markdown-it-html5-embed).