Markdown on CarneyWeb

I’ve changed the software the formats the pages to use Markdown instead of my home grown system. Markdown is a quasi-standard simplified markup language that allows for very nice web pages to be written with no HTML coding required. The goal of markdown is to use the formatting of the text itself define how a page should be formatted in HTML.

For instance, to get a bulleted list, I just start each line with a ‘*’ and the right thing happens in the page:

* This
* Is
* A
* List

This is very similar to what I already supported before (for reference, take a look at the [[Vanila Markup Language]]). There are a few differences, but I don’t have to maintain this stuff anymore.