Markdown Support in Trac
This version of Trac supports using Markdown as an alternative to wiki markup in any context WikiFormatting is used.
Using Markdown in Trac
To specify that a block of text should be parsed using RST, use the WikiMarkdown processor.
Known limitations
The current version of the Markdown processor doesn't support TrackLinks?. You will have to write links in the abolute form.
Example
The example below should be mostly self-explanatory:
{{{
#!WikiMarkdown
Title
=====
Subtitle
--------
Markdown is **nice**. It is also easy to ready even when not turned to HTML.
[Symfony](http://www.symfony-project.com) makes an extensive use of Markdown.
> This is a blockquote
echo "This is code"
That's all folks!
}}}
Results in:
Title
Subtitle
Markdown is nice. It is also easy to ready even when not turned to HTML. Symfony makes an extensive use of Markdown.
This is a blockquote
echo "This is code"
That's all folks!
See also: WikiProcessors, WikiFormatting