Markmin markup language
Easy-Con is powered by Web2Py and contains a simple markup language called Markmin. You can use Markmin in description fields, e.g., for events or conventions.
Among others, the following formats are supported:
Markmin | Output |
# title | title |
## section | section |
### subsection | subsection |
**bold** | bold |
''italic'' | italic |
~~strikeout~~ | |
``verbatim`` | verbatim |
``color with **bold**``:red | color with bold |
``many colors``:color[blue:#ffff00] | many colors |
http://google.com | http://google.com |
[[click me http://google.com]] | click me |
[[click me [extra info] #myanchor popup]] | click me |
Unordered Lists
- Dog
- Cat
- Mouse
is rendered as
- Dog
- Cat
- Mouse
Two new lines between items break the list in two lists.
Ordered Lists
+ Dog
+ Cat
+ Mouse
is rendered as
- Dog
- Cat
- Mouse
Multileveled Lists
+ Dogs
-- red
-- brown
-- black
+ Cats
-- fluffy
-- smooth
-- bald
+ Mice
-- small
-- big
-- huge
is rendered as
- Dogs
- red
- brown
- black
- Cats
- fluffy
- smooth
- bald
- Mice
- small
- big
- huge
Tables (with optional header and/or footer)
Something like this
-----------------
**A**|**B**|**C**
=================
0 | 0 | X
0 | X | 0
X | 0 | 0
=================
**D**|**F**|**G**
-----------------:abc[id]
is a table and is rendered as
A | B | C |
0 | 0 | X |
0 | X | 0 |
X | 0 | 0 |
D | F | G |