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
This example:
10.Dump(); 20.Dump();
produces this output:
10 20
However, this example:
10.Dump("Title"); 20.Dump();
produces this:
| Title | 1020
I feel like the expected output should be something like this:
| Title | 10 20
Tested in NetPad 0.6.0 on Windows.
The text was updated successfully, but these errors were encountered:
If I manually add an empty line between the two, it breaks the cycle:
10.Dump("Ttle"); "".Dump(); 20.Dump();
Output:
Sorry, something went wrong.
Thank you for reporting this. Fix will go out with next release.
Fixes bug reported in #118: incorrect newline formatting
453f8a2
Merge pull request #130 from tareqimbasher/fix/118
a2e96b6
Successfully merging a pull request may close this issue.
This example:
produces this output:
However, this example:
produces this:
I feel like the expected output should be something like this:
Tested in NetPad 0.6.0 on Windows.
The text was updated successfully, but these errors were encountered: