コード例 #1
0
def get_html(body, markup_type):
    if markup_type == 'textile':
        from external.libs import textile
        return textile.textile(body)
    return body
コード例 #2
0
ファイル: blog.py プロジェクト: mloar/bloog
def get_html(body, markup_type):
    if markup_type == 'textile':
        from external.libs import textile
        return textile.textile(body)
    return body
コード例 #3
0
ファイル: drupal_uploader.py プロジェクト: m4dc4p/bloog
 def repl(tmatch):
     if tmatch:
         return textile.textile(tmatch.group(1))