Yeah I thought ![...](...)
in markdown is supposed to map to the img tag in html?
In fact, I'm almost certain of it... sec...
Yes, I'm right!
https://spec.commonmark.org/0.30/#images
![blah](blorp.vwoop)
maps to, by the very spec itself: < img src="blorp" alt="blah" title="vwoop" />
(sans space because post stripping though, why are tags in code blocks stripped by the server instead of escaped???)
So if it links a youtube video... that... doesn't make sense? It's the img tag, not the link tag. It looks like Sync is correct here, it's putting it in an img tag, which is doing precisely what is expected for it to do?
Hack, just outright, so clean and clear and easy to read.