-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Fix Converter
and command(c::Converter)
#25
Comments
Thanks for the comments! btw, do you want write access to the repo? I've not been using this package (since I moved jobs) but expect I will more in the future. But I'm happy to add you as a maintainer! |
Thank you! That would be wonderful! I think it is a nice package! I wouldn't change the package substantially. I only plan to fix some issues. Once done, maybe update the version number. On the other hand I'm working on another package for using yours together with AbstractTrees.jl. Keeping then separated is cleaner. Later on, we could decide to merge them if it makes sense. Thanks again. |
You should have an invite now! If you can make all changes through PRs (even if I'm not able to review them) that'd be great! Feel free to add yourself to the authors section in the |
Thank you very much @kdheepak ! |
I have obtained all arguments that can be passed to
`pandoc`
from User Guide > Options. Here they are,As one can see they are 107, whereas
Converter
has only 97 fields if one removesinput
. I think some are missing.As you may notice, I filtered out duplicates/older arguments options such as
-o
,-w
or-v
and I kept only those starting by--
. I think this waycommand(c::Converter)
can be more consistent. For instance, There are some missing=
signs in--mathjax=URL
among others. I think focusing on--options
makes clear that=
can be used always.I also think that
--option[=true|false]
is a bit ambiguous, we can treat all the same, iftrue
pass it as--option
, iffalse
don't pass it. Nevertheless, there is one that has a confusing spec,--epub-title-page=true|false
. I don't know why the brackets are missing in this case.This list provides a comprehensible list of arguments and its options. We can update it, and we also can add it to docs.
The text was updated successfully, but these errors were encountered: