我正在编写一个降价扩展,但是当我从 python 命令行运行它时:
>>> import markdown
>>> markdown.markdown('foo --deleted-- bar', ['myextension'])
我收到以下错误:
AttributeError: 'module' object has no attribute 'inlinepatterns'
在这条线上:
md.inlinepatterns.add('del', del_tag, '>not_strong')
我已将 markdown 更新为 2.3.1,并在 Python 2.6 中运行它。解释器似乎正在查找我的 mdx_myextension.py 文件,因为跟踪簿反映它已注册扩展。