Esempio n. 1
0
File: blog.py Progetto: JamieS/bloog
def get_html(body, markup_type):
    if markup_type == 'textile':
        from utils.external.textile import textile
        return textile.textile(body)
    return body
Esempio 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')
Esempio 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')
Esempio 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