-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversion to HTML is not supported for markdown #29
Comments
Actually my configuration is pretty similar to yours: return {
{
'vimwiki/vimwiki',
init = function()
vim.g.vimwiki_list = {{
path = '~/Documents/vimwiki',
template_path = '~/Documents/vimwiki/templates/',
template_default = 'default',
syntax = 'markdown',
ext = '.md',
path_html = '~/Documents/vimwiki/site_html/',
custom_wiki2html = 'vimwiki_markdown',
template_ext = '.html',
}}
end,
},
} Is Without an error message or some debug logs it will be difficult to guide you. |
Thank you for your reply! $ vimwiki_markdown
Traceback (most recent call last):
File "/home/manik/.local/bin/vimwiki_markdown", line 8, in <module>
sys.exit(main())
File "/home/manik/.local/lib/python3.10/site-packages/vimwiki_markdown.py", line 69, in main
FORCE = sys.argv[1] # noqa - not supported
IndexError: list index out of range |
This error message is expected, because you're passing no argument to the command. BTW that means it is present in your path. That said I don't know why it vimwiki doesn't use it. |
Hi, I'm started using vimwiki recently
I have an issue with with converting markdown code to HTML using :Vimwiki2HTML
I had install vimwiki_markdown library with pip using
checked :checkhealth provider.python gives
and my vimwiki config:
And still I'm getting a conversion to HTML is not supported error
guide me in solving this issue
The text was updated successfully, but these errors were encountered: