Ejemplo n.º 1
0
Archivo: blog.py Proyecto: JamieS/bloog
def get_html(body, markup_type):
    if markup_type == 'textile':
        from utils.external.textile import textile
        return textile.textile(body)
    return body
Ejemplo n.º 2
0
 def repl(tmatch):
     if tmatch:  # Assume latin-1.  Will be converted by Bloog.
         return textile.textile(tmatch.group(1),
                                encoding='latin-1',
                                output='latin-1')
Ejemplo n.º 3
0
 def repl(tmatch):
     if tmatch:   # Assume latin-1.  Will be converted by Bloog.
         return textile.textile(tmatch.group(1), 
                                encoding='latin-1', output='latin-1')
Ejemplo n.º 4
0
def get_html(body, markup_type):
    if markup_type == 'textile':
        from utils.external.textile import textile
        return textile.textile(body)
    return body