Changes between Initial Version and Version 1 of WikiProcessors


Ignore:
Timestamp:
Oct 11, 2005, 12:24:32 AM (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiProcessors

    v1 v1  
     1= Wiki Processors =
     2Processors are WikiMacros designed to provide alternative markup formats for the Trac Wiki engine. Processors can be thought of as ''macro functions to process user-edited text''.
     3
     4The wiki engine uses processors to allow using [wiki:WikiRestructuredText Restructured Text] and [wiki:WikiHtml raw HTML] in any wiki text throughout Trac.
     5
     6== Using Processors ==
     7To use a processor on a block of text, use a wiki blockquote, selecting a processor by name using 'hashbang notation' (#!), familiar to most UNIX users from scripts.
     8
     9'''Example 1''' (''inserting raw HTML in a wiki text''):
     10
     11{{{
     12#!html
     13<pre class="wiki">{{{
     14#!html
     15&lt;h1 style="color: orange"&gt;This is raw HTML&lt;/h1&gt;
     16}}}</pre>
     17}}}
     18
     19'''Results in:'''
     20{{{
     21#!html
     22<h1 style="color: orange">This is raw HTML</h1>
     23}}}
     24
     25----
     26
     27'''Example 2''' (''inserting Restructured Text in wiki text''):
     28
     29{{{
     30#!html
     31<pre class="wiki">{{{
     32#!rst
     33A header
     34--------
     35This is some **text** with a footnote [*]_.
     36
     37.. [*] This is the footnote.
     38}}}</pre>
     39}}}
     40
     41'''Results in:'''
     42{{{
     43#!rst
     44A header
     45--------
     46This is some **text** with a footnote [*]_.
     47
     48.. [*] This is the footnote.
     49}}}
     50----
     51'''Example 3''' (''inserting a block of C source code in wiki text''):
     52
     53{{{
     54#!html
     55<pre class="wiki">{{{
     56#!c
     57int main(int argc, char *argv[])
     58{
     59  printf("Hello World
     60");
     61  return 0;
     62}
     63}}}</pre>
     64}}}
     65
     66'''Results in:'''
     67{{{
     68#!c
     69int main(int argc, char *argv[])
     70{
     71  printf("Hello World
     72");
     73  return 0;
     74}
     75}}}
     76
     77----
     78
     79
     80
     81== Available Processors ==
     82The following processors are included in the Trac distribution:
     83 * '''html''' -- Insert custom HTML in a wiki page. See WikiHtml.
     84 * '''rst''' -- Trac support for Restructured Text. See WikiRestructuredText.
     85 * '''textile''' -- Supported if  [http://dealmeida.net/projects/textile/ Textile] is installed.
     86
     87=== Source Code Support ===
     88Trac includes processors to provide inline [wiki:TracSyntaxColoring syntax highlighting] for these languages:
     89 * '''c''' -- C
     90 * '''cpp''' -- C++
     91 * '''python''' -- Python
     92 * '''perl''' -- Perl
     93 * '''ruby''' -- Ruby
     94 * '''php''' -- PHP
     95 * '''asp''' --- ASP
     96 * '''sql''' -- SQL
     97 * '''xml''' -- XML
     98'''Note:''' ''Trac relies on external software packages for syntax coloring. See TracSyntaxColoring for more info.''
     99
     100By using the mime-type as processor, it is posible to syntax-highlight the same languages that are supported when browsing source code.
     101
     102For example, you can write:
     103
     104{{{
     105{{{
     106#!text/html
     107<h1>text</h1>
     108}}}
     109}}}
     110
     111The result will be syntax highlighted html code. The same is valid for all other mime types supported.
     112
     113
     114
     115For more processor macros developed and/or contributed by users, visit the macro bazaar:
     116 http://projects.edgewall.com/trac/wiki/MacroBazaar
     117
     118----
     119== Advanced Topics: Developing Processor Macros ==
     120Developing processors is no different than WikiMacros. In fact they work the same way, only the usage syntax differs. See WikiMacros for more information.
     121
     122'''Example:''' (''Restructured Text Processor''):
     123{{{
     124from docutils.core import publish_string
     125
     126def execute(hdf, text, env):
     127    html = publish_string(text, writer_name = 'html')
     128    return html[html.find('<body>')+6:html.find('</body>')].strip()
     129}}}
     130
     131----
     132See also : WikiMacros, WikiHtml, WikiRestructuredText, TracSyntaxColoring, WikiFormatting, TracGuide