You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed mdx_titlecase in a Python 3.6 virtual environment, alongside other third party markdown extensions. The output of pip freeze is as follows:
Traceback (most recent call last):
File "/usr/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/foobar/.virtualenvs/some_virtual_env/lib/python3.6/site-packages/markdown/__main__.py", line 144, in <module>
run()
File "/home/foobar/.virtualenvs/some_virtual_env/lib/python3.6/site-packages/markdown/__main__.py", line 138, in run
markdown.markdownFromFile(**options)
File "/home/foobar/.virtualenvs/some_virtual_env/lib/python3.6/site-packages/markdown/core.py", line 408, in markdownFromFile
md = Markdown(**kwargs)
File "/home/foobar/.virtualenvs/some_virtual_env/lib/python3.6/site-packages/markdown/core.py", line 100, in __init__
configs=kwargs.get('extension_configs', {}))
File "/home/foobar/.virtualenvs/some_virtual_env/lib/python3.6/site-packages/markdown/core.py", line 126, in registerExtensions
ext = self.build_extension(ext, configs.get(ext, {}))
File "/home/foobar/.virtualenvs/some_virtual_env/lib/python3.6/site-packages/markdown/core.py", line 181, in build_extension
return module.makeExtension(**configs)
File "/home/foobar/.virtualenvs/some_virtual_env/lib/python3.6/site-packages/mdx_titlecase/__init__.py", line 29, in makeExtension
return TitlecaseExtension(**kwargs)
NameError: name 'TitlecaseExtension' is not defined
What could the problem be?
The text was updated successfully, but these errors were encountered:
I installed
mdx_titlecase
in a Python 3.6 virtual environment, alongside other third party markdown extensions. The output ofpip freeze
is as follows:I ran the following command to transform my markdown to html:
I got the following error
What could the problem be?
The text was updated successfully, but these errors were encountered: