Edgewall Software

Changes between Version 14 and Version 15 of WikiProcessors


Ignore:
Timestamp:
Oct 31, 2005, 3:41:32 PM (19 years ago)
Author:
Christopher Lenz
Comment:

Cleanup

Legend:

Unmodified
Added
Removed
Modified
  • WikiProcessors

    v14 v15  
    55
    66== Using Processors ==
    7 To 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.
     7To 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.
    88
    99'''Example 1''' (''inserting raw HTML in a wiki text''):
     
    7575----
    7676
    77 
    78 
    7977== Available Processors ==
    8078The following processors are included in the Trac distribution:
     
    8381 * '''textile''' -- Supported if  [http://dealmeida.net/projects/textile/ Textile] is installed.
    8482
    85 === Source Code Support ===
    86 Trac includes processors to provide inline [wiki:TracSyntaxColoring syntax highlighting] for these languages:
     83=== Code Highlighting Support ===
     84Trac includes processors to provide inline [wiki:TracSyntaxColoring syntax highlighting] for the following languages:
    8785 * '''c''' -- C
    8886 * '''cpp''' -- C++
     
    9694'''Note:''' ''Trac relies on external software packages for syntax coloring. See TracSyntaxColoring for more info.''
    9795
    98 By using the mime-type as processor, it is posible to syntax-highlight the same languages that are supported when browsing source code.
    99 
    100 For example, you can write:
    101 
     96By 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:
    10297{{{
    10398{{{
     
    107102}}}
    108103
    109 The result will be syntax highlighted html code. The same is valid for all other mime types supported.
    110 
     104The result will be syntax highlighted HTML code. The same is valid for all other mime types supported.
    111105
    112106
    113107For more processor macros developed and/or contributed by users, visit:
    114  * ProcessorBazaar
    115  * MacroBazaar
     108 * [http://projects.edgewall.com/trac/wiki/ProcessorBazaar ProcessorBazaar]
     109 * [http://projects.edgewall.com/trac/wiki/MacroBazaar MacroBazaar]
    116110
    117 ----
     111
    118112== Advanced Topics: Developing Processor Macros ==
    119113Developing processors is no different than WikiMacros. In fact they work the same way, only the usage syntax differs. See WikiMacros for more information.