Changeset 1842

Show
Ignore:
Timestamp:
03/10/09 16:56:15 (12 months ago)
Author:
JensDiemer
Message:

creole markup:

  • use all existing macros
  • disable verbosity
Location:
trunk/pylucid_project/PyLucid
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid_project/PyLucid/system/markups/PyLucid_creole_macros.py

    r1830 r1842  
    77from PyLucid.system.hightlighter import make_html 
    88 
    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 
     10from PyLucid.system.markups.creole.default_macros import * 
    1511 
    1612def code(args, text): 
  • trunk/pylucid_project/PyLucid/tools/content_processors.py

    r1831 r1842  
    147147     
    148148    # 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() 
    150150 
    151151from PyLucid.models import Page