{{ add_data_tag }}

tinyTextile help

{% if messages %}
page message {% for message in messages %} {{ message }}
{% endfor %}
{% endif %}
h1. headlines headlines are introduced with 'h1.':
h1. h-1 headline

h2. h-2 headline
Result: h1. h-1 headline h2. h-2 headline (Important: one blank line under the headline!)
h1. Text formatting
I am a --small-- word with <small> tag.
This is a *fat* word with <strong> tag.
Result: I am a --small-- word with ==== tag. This is a *fat* word with ==== tag.
h1. Links Links according in the following pattern:
"LinkText":URL
examples:
http://exampledomain.dtl
ftp://exampledomain.dtl
mailto:name@exampledomain.dtl
http://www.python-forum.de
or better: "Das deutsche Python-Forum":http://www.python-forum.de
This is a link, too: "Link":?#unten
Wiki like, internal PyLucid links: [[ExamplePageName]]
Result: http://exampledomain.dtl ftp://exampledomain.dtl mailto:name@exampledomain.dtl http://www.python-forum.de or better: "Das deutsche Python-Forum":http://www.python-forum.de This is a link, too: "Link":?#unten Wiki like, internal PyLucid links: [[ExamplePageName]]
h1. List You can make ==
    == liste with "*" and ==
      == list with "#". Note: You can't mixed this list types ;) examples:
      normal list:
      * Lorem ipsum dolor sit amet
      ** consectetuer adipiscing elit
      **** sed diam nonummy nibh
      **** euismod tincidunt ut laoreet
      ** dolore magna aliquam erat volutpat.
      
      numbered list:
      # Lorem ipsum dolor sit amet
      ## consectetuer adipiscing elit
      #### sed diam nonummy nibh
      #### euismod tincidunt ut laoreet
      ## dolore magna aliquam erat volutpat.
      
      Result: normal list: * Lorem ipsum dolor sit amet ** consectetuer adipiscing elit **** sed diam nonummy nibh **** euismod tincidunt ut laoreet ** dolore magna aliquam erat volutpat. numbered list: # Lorem ipsum dolor sit amet ## consectetuer adipiscing elit #### sed diam nonummy nibh #### euismod tincidunt ut laoreet ## dolore magna aliquam erat volutpat.
      h1. Bilder Ein HTML-img-Tag wird erzeugt, wenn eine Adresse mit einem "!"-Zeichen umschlossen ist.
      !http://images.sourceforge.net/images/project-support.jpg!
      !/favicon.ico!
      !http://domain.tld/pics/ich werde zu keiner URL weil hier leerzeichen sind.jpg!
      
      Result: !http://images.sourceforge.net/images/project-support.jpg! !/favicon.ico! !http://domain.tld/pics/ich werde zu keiner URL weil hier leerzeichen sind.jpg!
      h1. Embed Python SourceCode Put sourcecode between ==== tag. Note: The start and end tag must be located alone in a line! example: == #!/usr/bin/python # -*- coding: UTF-8 -*- """Ein kleines Skript""" print "Hello Word: I love Python!" == Result: #!/usr/bin/python # -*- coding: UTF-8 -*- """Ein kleines Skript""" print "Hello Word: I love Python!"
      h1. Embed source code generally With the ==== Tag you can highlight everything, which offers Pygments. 'ext' is the file extension. examples: == body { color: black; } == Result: body { color: black; }
      h1. Escaping Text inner two "="-chars would be escaped. example: -------- ======== Table: Link: txt Input: ======== It goes also within a flow text: Here ist no Link: ========txt======== nice?
      h1. pre-Formarted-Text You can use the ==
      == tag. tinyTextile ingnore the Markup in the area.
      
      
      Example:
      ---------
      h2. Not a textile headline
      

      Manuelly h3 headline with html tags

      * This is not a... * ...textile list

      h1. HTML-Code You can insert any HTML code directy in you page. tinyTextile ingnore it.