We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I downloaded and built kgt and then ran this command:
kgt
./build/bin/kgt -l abnf -e svg < ./examples/abnf.abnf > ./abnf.svg
No message and the output length of file abnf.svg is 0. However, expr.bnf to expr.svg works fine. Have not tried other flavours yet.
The text was updated successfully, but these errors were encountered:
ABNF is supported! The parsing there is tripping up on the trailing comments after productions. That's a bug, #11. I'm not sure how to fix it.
Also not giving an error message is a bug.
If you remove the comments, you should see output:
; cat examples/abnf.abnf | grep -v ';' | ./build/bin/kgt -l abnf -e svg
Sorry, something went wrong.
Will close this as it is already being tracked. The workaround is what I will use in the meantime.
Thanks for reporting it! sorry it sucks a bit. I think I have to rework how all the whitespace is handled for ABNF, somehow. I'm really not sure :/
No branches or pull requests
I downloaded and built
kgt
and then ran this command:No message and the output length of file abnf.svg is 0. However, expr.bnf to expr.svg works fine. Have not tried other flavours yet.
The text was updated successfully, but these errors were encountered: