示例#1
0
文件: blog.py 项目: JamieS/bloog
def get_html(body, markup_type):
    if markup_type == 'textile':
        from utils.external.textile import textile
        return textile.textile(body)
    return body
示例#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')
示例#3
0
文件: uploader.py 项目: JamieS/bloog
 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')
示例#4
0
文件: blog.py 项目: chunchu/bloog
def get_html(body, markup_type):
    if markup_type == 'textile':
        from utils.external.textile import textile
        return textile.textile(body)
    return body