Edgewall Software

Changes between Version 9 and Version 10 of WikiProcessors


Ignore:
Timestamp:
Nov 16, 2004, 6:16:29 AM (19 years ago)
Author:
daniel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WikiProcessors

    v9 v10  
    122122from docutils.core import publish_string
    123123
    124 def execute(hdf, text):
     124def execute(hdf, text, env):
    125125    html = publish_string(text, writer_name = 'html')
    126126    return html[html.find('<body>')+6:html.find('</body>')].strip()