搜尋

首頁  >  問答  >  主體

python - django如何渲染markdown的表格?

我用的Django1.8, 插件时Markdown,但是不能渲染表格,有什么好的解决办法吗?

巴扎黑巴扎黑2784 天前794

全部回覆(1)我來回復

  • ringa_lee

    ringa_lee2017-04-17 17:26:21

    預設不支持, 需要配置 擴充項

    def md(str_md=''):
        '''
        Renders the specified markdown content and embedded styles.
        '''
        str_html = ''
        str_html = markdown(str_md, extensions=[
            # 'urlize',
            'fenced_code',
            'codehilite(css_class=highlight)',
            'toc',
            'tables',
            'sane_lists',
        ])
        return str_htmldef gfm(str_md=''):
        '''
        Renders the specified markdown content and embedded styles.
        '''
        str_html = ''
        str_html = markdown(str_md, extensions=[
            # 'urlize',
            'fenced_code',
            'codehilite(css_class=highlight)',
            'toc',
            'tables',
            'sane_lists',
        ])
        return str_html

    回覆
    0
  • 取消回覆