ckdl
ckdl copied to clipboard
KDL parsing library in C, Python, C++
I tried to change **KDL_DEFAULTS** to **KDL_EMIT_COMMENTS** then I got "Invalid event from kdl_parser" exception.... ``` Document parse(std::u8string_view kdl_text) { kdl_str text = {reinterpret_cast(kdl_text.data()), kdl_text.size()}; kdl_parser* parser = kdl_create_string_parser(text, KDL_EMIT_COMMENTS);...
Is support for this planned in the future? I would like to include this information in diagnostics, both from parse errors as well as semantic analysis of the nodes. Thanks!
The KDL 2.0.0 spec was changed last minute (after the release of ckdl-1.0) to define U+000B (vertical tab/line tabulation) as a newline character rather than a whitespace character. ckdl treats...
Hi, Currently `ckdl` lacks support for code completion in python code editors. As a result, writing code is more difficult and error prone. Can you add support for editor code...