Results 25 issues of jpmag

Thanks for your thorough work! Would you consider accepting a MR for supporting C++11? `if constexpr` is really handy, but since it is not allowed in C++11, I could rewrite...

Thanks for your work -- it ticks all the boxes! C++11, non terminated strings, and zero allocations - just what I was looking for in my library to address [a...

Eg, #29 or #30 . Some thoughts: * implement custom `EmitFormatter`s: * block (the current emitter) * single-line flow * multi-line flow * semi-intelligent: use a general emitter, using heuristics...

enhancement

Since emscripten is now supported, I'd like to create the javascript artifacts as part of the [release workflow](https://github.com/biojppm/rapidyaml/blob/master/.github/workflows/release.yml). Also, a quick JS usage example in the main README is needed....

enhancement
help wanted

Would you consider licensing TinyTIFF under a more permissive license, say MIT or BSD? It would improve its adoption. There were already a couple of projects where I was not...

A very common usage pattern of such functions is the following ```c++ // the output buffer; could be another type, eg char* std::string s; // how large is enough? We...

It is easy to reproduce this in the unit tests: ```c++ // s2f_test.cc TEST(S2fTest, TrailingDecimalZeros) { EXPECT_S2F(1.f, "1"); EXPECT_S2F(1.f, "1.000"); EXPECT_S2F(1.f, "1.000000000"); // fail: INPUT_TOO_LONG EXPECT_S2F(8388605.f, "8388605"); EXPECT_S2F(8388605.f, "8388605.00"); EXPECT_S2F(8388605.f,...

I have problems submitting parallel builds from my [Github CI](https://github.com/biojppm/rapidyaml/actions/runs/3039034536/workflow). I've set the `COVERALLS_PARALLEL` variable to true ([see the log demonstrating it](https://github.com/biojppm/rapidyaml/actions/runs/3039034536/jobs/4893490167#step:4:47)), and yet the [webhook notify submission always fails](https://github.com/biojppm/rapidyaml/actions/runs/3039034536/jobs/4893614494#step:2:1):...

set-up
parallel-builds
github-action