Version 24 (modified by guest, 6 years ago)

--

viagra herbal viagra viagra alternative buy cialis acyclovir side effects atenolol valium cheap soma cheap soma ambien side effects ambien xanax xr soma online viagra discount phentermine hydrocodone no prescription buy viagra ambien liquid propecia viagra alternative drug valtrex cheap propecia buy ambien online buy viagra atenolol side effects buy online ultracet generic ambien cheap tramadol cheap soma buy hydrocodone online phentermine 37 5mg valium side effects of zyprexa buy viagra buy tramadol zoloft buy online xenical herbal viagra zoloft suicide side effects of zyprexa zoloft suicide effects of zoloft viagra alternative zoloft suicide side effects for valtrex zyprexa diabetes liquid propecia generic propecia buy ambien online phentermine 37 5mg phentermine viagra cialis online generic viagra zyprexa lawyer meridia discount cheap soma buy ultram viagra alternative side effects of xanax cheap viagra valtrex medication cheap viagra generic ultram hydrocodone no prescription herbal viagra buy hydrocodone online zoloft suicide acyclovir medication valium online pharmacy tramadol valtrex medication buy online ultracet generic valium cheap soma generic cialis buy ambien online buy xanax buy atenolol viagra

Wiki Processors

Processors 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.

The wiki engine uses processors to allow using Restructured Text and raw HTML in any wiki text throughout Trac.

Using Processors

To use a processor on a block of text, use a wiki blockquote, selecting a processor by name using shebang notation (#!), familiar to most UNIX users from scripts.

Example 1 (inserting raw HTML in a wiki text):

{{{
#!html
<h1 style="color: orange">This is raw HTML</h1>
}}}

Results in:

This is raw HTML


Example 2 (inserting Restructured Text in wiki text):

{{{
#!rst
A header
--------
This is some **text** with a footnote [*]_.

.. [*] This is the footnote.
}}}

Results in:

A header
--------
This is some **text** with a footnote [*]_.

.. [*] This is the footnote.

Example 3 (inserting a block of C source code in wiki text):

{{{
#!c
int main(int argc, char *argv[])
{
  printf("Hello World\n");
  return 0;
}
}}}

Results in:

int main(int argc, char *argv[])
{
  printf("Hello World\n");
  return 0;
}

Available Processors

The following processors are included in the Trac distribution:

Code Highlighting Support

Trac includes processors to provide inline syntax highlighting for the following languages:

  • c -- C
  • cpp -- C++
  • python -- Python
  • perl -- Perl
  • ruby -- Ruby
  • php -- PHP
  • asp --- ASP
  • sql -- SQL
  • xml -- XML

Note: Trac relies on external software packages for syntax coloring. See TracSyntaxColoring for more info.

By using the MIME type as processor, it is possible to syntax-highlight the same languages that are supported when browsing source code. For example, you can write:

{{{
#!text/html
<h1>text</h1>
}}}

The result will be syntax highlighted HTML code. The same is valid for all other mime types supported.

For more processor macros developed and/or contributed by users, visit:

Advanced Topics: Developing Processor Macros

Developing processors is no different than WikiMacros. In fact they work the same way, only the usage syntax differs. See WikiMacros for more information.

Example: (Restructured Text Processor):

from docutils.core import publish_string

def execute(hdf, text, env):
    html = publish_string(text, writer_name = 'html')
    return html[html.find('<body>')+6:html.find('</body>')].strip()

See also: WikiMacros, WikiHtml, WikiRestructuredText, TracSyntaxColoring, WikiFormatting, TracGuide