Markdown
Why write HTML by hand when you can write Markdown easily on your tilde.town server?
Three simple steps:
- write your wiki page as a markdown file and save it with a
.text
extension. eg:markdown.text
- type
make
in the shell. Themarkdown.text
file +page.theme
will be turned intomarkdown.html
page. - add these two files to git via
git add markdown.text markdown.html
and commit. - profit!
Markdown Syntax
Reference: Markdown Basics
Major Header
============
Minor header
------------
# Alternative Format Major Header
## Alternative Format Minor header
### Even more minor header
> Block quote
*italics* or _italics_
**bold** or __bold__
* Unor-
* dered
* List
* (may also use + or - for bullets)
1. Or-
2. dered
3. List
[link text](link URI)
![alt text](image-URI "image title")
`code` (or indent paragraph four spaces or tab)
Results
Major Header
Minor header
Alternative Format Major Header
Alternative Format Minor header
Even more minor header
Block quote
italics or italics
bold or bold
- Unor-
- dered
- List
(may also use + or - for bullets)
Or-
- dered
- List
code
(or indent paragraph four spaces or tab)