Changeset 1842
- Timestamp:
- 03/10/09 16:56:15 (12 months ago)
- Location:
- trunk/pylucid_project/PyLucid
- Files:
-
- 2 modified
-
system/markups/PyLucid_creole_macros.py (modified) (1 diff)
-
tools/content_processors.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid_project/PyLucid/system/markups/PyLucid_creole_macros.py
r1830 r1842 7 7 from PyLucid.system.hightlighter import make_html 8 8 9 def html(args, text): 10 """ 11 Macro tag <<html>>...<</html>> 12 Pass-trought for html code (or other stuff) 13 """ 14 return text 9 # use all existing macros 10 from PyLucid.system.markups.creole.default_macros import * 15 11 16 12 def code(args, text): -
trunk/pylucid_project/PyLucid/tools/content_processors.py
r1831 r1842 147 147 148 148 # Build html code from document tree 149 return HtmlEmitter(document, macros=PyLucid_creole_macros, verbose= 1).emit()149 return HtmlEmitter(document, macros=PyLucid_creole_macros, verbose=0).emit() 150 150 151 151 from PyLucid.models import Page