Edgewall Software

Changes between Version 1 and Version 2 of WikiProcessors


Ignore:
Timestamp:
Mar 21, 2004, 10:45:14 PM (20 years ago)
Author:
daniel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WikiProcessors

    v1 v2  
    4848.. [*] This is the footnote.
    4949}}}
     50
     51----
     52== Advanced Topics: Developing Processor Macros ==
     53Developing processors is no different than WikiMacros. In fact they work the same way, only the usage syntax differs. See WikiMacros for more information.
     54
     55'''Example:''' (''Restructured Text Processor''):
     56{{{
     57from docutils.core import publish_string
     58
     59def execute(hdf, text):
     60    html = publish_string(text, writer_name = 'html')
     61    return html[html.find('<body>')+6:html.find('</body>')].strip()
     62}}}
     63
     64----
     65See also: WikiMacros, WikiFormatting, TracGuide