Convert to tags from "*" to "tags/*".
[blog.git] / posts / Markdown.mdwn
1 [[!meta  title="Markdown"]]
2 [[!meta  date="2008-06-29 15:27:02"]]
3 I'll be using (at least for now) John Gruber's [Markdown](http://daringfireball.net/projects/markdown/syntax) syntax.
4 I had to `apt-get install markdown` to get this to work, since that's what nanoblogger uses to preform the markdown markup :p.
5 See
6 <pre>
7 /usr/share/nanoblogger/plugins/entry/format/markdown.sh
8 </pre>
9
10 Code (delimited with backticks '`` ` ``'), gets formatted with `<code>` tags, so you need to set up your CSS with
11 <pre>
12 code {font: monospace; font-weight: bold};
13 </pre>
14 or something to that effect.
15
16 [[!tag tags/blogging]]