markmin 0.1

Massimo Di Pierro mdipierro at cs.depaul.edu
Tue Jul 6 01:56:12 CEST 2010


Markmin is a wiki markup language
implemented in less than 100 lines of code (one file, no dependencies)
easy to read
secure
support table, ul, ol, code
support html5 video and audio elements
can align images and resize them
CSS friendly (can specify class for tables and code elements)
can add anchors anywhere
does not use _ for markup (since it creates odd behavior)
automatically links urls
fast
with tests
Examples

# section
## subsection
### subsubsection
#### etc etc etc

**bold**
''italic'' (two single quotes, not double quote)
``varbatim``
a link [[this is a title http://example.com]]
an image [[this is a title http://example.com right 200px]]
a video [[this is a title http://example.come video]]
a audio [[this is a title http://example.come audio]]
an anchor [[myanchor]]
link to anchor [[this is a title #myancohr]]
bold link [[**this is a title** http://example.com]]
automatic links http://example.com

``
def inex():
     return "multiline code"
``:language

- unordered
- list

+ oredered
+ list

table example
-------------
0  | 0 | 1
0  | X | 0
X  | 0 | 0
-------------



More information about the Python-announce-list mailing list