Sometimes it is not enough makrdown features. E.g. I need to insert <video> in markdown that will be server from public folder.
And inserting html directly is valid for GitHub or VisuaStudio Code (preview)
I want to have /src/views/some/some.md.zmpl:
# Some cool movie title
## Subheader
<video width="320" height="240" controls>
<source src="./robocop_parking.mp4" type="video/mp4">
</video>
Above works in GitHub or VisuaStudio Code but does not work in zmpl.
Is this implemented/supported?
I got following in browser response:
<p class='p-3'><video width="320" height="240" controls></p><p class='p-3'> <source src="./robocop_parking.mp4" type="video/mp4"></p><p class='p-3'></video></p>
Sometimes it is not enough makrdown features. E.g. I need to insert
<video>in markdown that will be server from public folder.And inserting
htmldirectly is valid forGitHuborVisuaStudio Code(preview)I want to have
/src/views/some/some.md.zmpl:Above works in
GitHuborVisuaStudio Codebut does not work inzmpl.Is this implemented/supported?
I got following in browser response: