Esempio n. 1
0
def content_get_info(s):
    """Remove all media tags"""
    bbcode_to_html = BBCodeParser(s)
    info_tags = [tag for tag in bbcode_to_html.bbcode_rules.iterkeys() if tag not in bbcode_to_html.get_media_tags()]
    content = bbcode_to_html.get_html_from_bbcode_tags(bbcode_to_html.escape_html(), 
                                                       True, 
                                                       *info_tags)
    return content    
Esempio n. 2
0
def content_get_info(s):
    """Remove all media tags"""
    bbcode_to_html = BBCodeParser(s)
    info_tags = [
        tag for tag in bbcode_to_html.bbcode_rules.iterkeys()
        if tag not in bbcode_to_html.get_media_tags()
    ]
    content = bbcode_to_html.get_html_from_bbcode_tags(
        bbcode_to_html.escape_html(), True, *info_tags)
    return content
Esempio n. 3
0
def content_get_media(s):
    bbcode_to_html = BBCodeParser(s)
    content = bbcode_to_html.get_html_from_bbcode_tags(
        bbcode_to_html.escape_html(), True, *bbcode_to_html.get_media_tags())
    return content
Esempio n. 4
0
def content_get_media(s):
    bbcode_to_html = BBCodeParser(s)
    content = bbcode_to_html.get_html_from_bbcode_tags(bbcode_to_html.escape_html(), 
                                                       True,
                                                       *bbcode_to_html.get_media_tags())
    return content