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
In TOML, when you parse the following
# I'm just messing around with it title = "TOML Example" # This comment comes at the end of the line
It doesn't keep track of where the comments came from, so rendering it back out results in
# I'm just messing around with it # This comment comes at the end of the line title = "TOML Example"
It would be cool if it could keep track of where the comment came from and render it accordingly.
Tested with 3.0.1
The text was updated successfully, but these errors were encountered:
With the modified comment storage that I explained in issue #29 this would be possible :-)
Right now I'm in holidays without my computer, but I'll look at it when I'll come back.
Sorry, something went wrong.
TheElectronWill
No branches or pull requests
In TOML, when you parse the following
It doesn't keep track of where the comments came from, so rendering it back out results in
It would be cool if it could keep track of where the comment came from and render it accordingly.
Tested with 3.0.1
The text was updated successfully, but these errors were encountered: