Edgewall Software

Changes between Version 24 and Version 25 of WikiProcessors


Ignore:
Timestamp:
Dec 10, 2007, 2:30:04 PM (16 years ago)
Author:
Christian Boos
Comment:

Remove obsolete example. The redirection to TracWikiMacros should be enough.

Legend:

Unmodified
Added
Removed
Modified
  • WikiProcessors

    v24 v25  
    118118
    119119== Advanced Topics: Developing Processor Macros ==
    120 Developing processors is no different from WikiMacros. In fact they work the same way, only the usage syntax differs. See WikiMacros for more information.
     120Developing processors is no different from Wiki macros. In fact they work the same way, only the usage syntax differs. See TracWikiMacros for more information.
    121121
    122 '''Example:''' (''Restructured Text Processor''):
    123 {{{
    124 #!python
    125 from docutils.core import publish_string
    126 
    127 def execute(hdf, text, env):
    128     html = publish_string(text, writer_name = 'html')
    129     return html[html.find('<body>')+6:html.find('</body>')].strip()
    130 }}}
    131122
    132123----
    133 See also: WikiMacros, WikiHtml, WikiRestructuredText, TracSyntaxColoring, WikiFormatting, TracGuide
     124See also: TracWikiMacros, WikiHtml, WikiRestructuredText, TracSyntaxColoring, WikiFormatting, TracGuide