Textile Syntax | ||
---|---|---|
Markup Generation | Tips and Tricks |
The WikiText editor supports most standard Textile markup. In addition some markup extensions are supported. See the markup ‘cheat-sheet’ for details (press F1 in the editor).
Textile markup is sensitive to whitespace. For example, a line that starts with 'h1.
' is only a heading if the 'h1.
' is immediately followed by a space character. This can bite you if you’re not careful!
A less obvious example of the same problem is with 'bc.
' Usually content in a ‘block code’ section is on the line following the 'bc.
' If the 'bc.
' is not immediately followed by a space character before the end of the line, then the area is simply considered a normal paragraph.
Textile markup can handle literal HTML. For example, the following is valid Textile:
some <b>bold text</b> here
Care must be taken with literal HTML: the start tag must be completed on one line, and the end tag must be completed on one line. The following is an example of embedded HTML that won’t work with Textile:
here is <a
href="#">a bad example</a>
The above example can be fixed by moving the href
up on to the same line as the <a
portion:
here is <a href="#">a working example</a>
DocBook is quite flexible about how images are handled. This section discusses how DocBook rendering can be altered with the use of specific markup.
When handling images in a conversion of Textile markup to DocBook markup, there are several choices for the resulting DocBook markup. By default images are converted as follows:
!images/foo.png!
results in:
<mediaobject><imageobject><imagedata fileref="images/foo.png"/></imageobject></mediaobject>
<mediaobject/>
is useful for some cases, however there are times when <inlinemediaobject/>
should be used instead. To achieve this result, add the inline
class to your image as follows:
!(inline)images/foo.png!
The conversion will then result in the following:
<inlinemediaobject><imageobject><imagedata fileref="images/foo.png"/></imageobject></inlinemediaobject>
DocBook supports image scaling with the scale
attribute. For example:
<imagedata fileref="images/foo.png" scale="80"/>
To achieve this effect with Textile markup use syntax as follows:
!{width:80%}images/foo.png!
More information about image scaling in DocBook is available at imagedata: Scaling.
Image size can be specified in DocBook using width
and depth
attributes for width and height, respectively:
<imagedata fileref="images/foo.png" width="32px" height="64px"/>
This is achieved with Textile markup as follows:
!{width:32px;height:64px}images/foo.png!
Textile extended blocks (starting with bc..
, pre..
and bq..
) are useful for blocks that may have multiple whitespace lines. Extended blocks must be terminated by an explicit Textile block (such as p.
). For example:
bc..
a block code section has started
and continues
p. a paragraph starts
Mylyn WikiText adds the following extensions to Textile:
{toc}
- emit a table of contents. Parameters may be specified as follows:{toc:style=circle}
Emit with list-style=circle{toc:maxLevel=2}
Emit with heading levels up to and including h2.{toc:class=tableOfContents}
Emit with CSS class of “tableOfContents”. Defaults to “toc” if unspecified.{glossary}
- emit a glossary of terms in a definition list. Glossary terms are specified using Textile syntax for acronyms.This document was written in Textile markup. The original source code for this document is available here
Textile syntax and references can be found here:
Markup Generation | Tips and Tricks |