I want to embed a few html elements and javascript in a blog post. This is my markdown file.
Title: Foo
Tags: Bar
Some Content here
<div id="foo">
</div>
<script type="text/javascript" src="static/js/bar.js"> </script>
pre
pip install Markdown
Probably the reason its not working is that you've indented your code, which means that it gets inserted as a <code>
block in the HTML, according to the Markdown spec: daringfireball.net/projects/markdown/syntax#precode