{% extends "page_admin/markup_help_base.html" %} {% block content %}{{ block.super }} creole cheat sheet

creole macros

html

Add html code e.g:

Creole
1
<<html>><h1 class="foo">bar</h1><</html>>

code

hightlight sourcecode e.g:

Creole
1
2
3
4
<<code ext=.css>>
.xs {font-size: x-small}
.m {font-size: medium}
<</code>>

Important: The code should no contain django template tags! (use {% sourcecode %} for this!)

{% include "page_admin/includes/markup_help_common.html" %}

Creole additions:

monospace - <tt>...</tt>

This is ##monospace## text.

Output: This is monospace text.

superscripted - <sup>...</sup>

This is ^^superscripted^^ text.

Output: This is superscripted text.

subscripted - <sub>...</sub>

This is ,,subscripted,, text.

Output: This is subscripted text.

underlined - <u>...</u>

This is __underlined__ text.

Output: This is underlined text.

deleted - <del>...</del>

This is ~~deleted~~ text.

Output: This is deleted text.

small - <small>...</small>

This is --small-- text.

Output: This is small text.


links

{% endblock content %}