- 21 Apr, 2022 1 commit
-
-
Dr. Andre Vehreschild authored
-
- 01 Apr, 2022 1 commit
-
-
Dr. Andre Vehreschild authored
Complies with YAML Standard [5.4](https://yaml.org/spec/1.2.2/#54-line-break-characters) [25] instead of matching `\r` only in combination with `\n`.
-
- 05 Jul, 2021 1 commit
-
-
theamarin authored
-
- 27 Jul, 2020 1 commit
-
-
Chen authored
-
- 24 Jul, 2020 1 commit
-
-
Chen authored
* fix issue743: handle the empty content of flow sep/map correctly during emitting. * handle the empty Tag/Anchor properly. * delete comment
-
- 23 Jul, 2020 1 commit
-
-
Chen authored
-
- 16 Jul, 2020 1 commit
-
-
Chen authored
Fixes #501
-
- 14 Jul, 2020 1 commit
-
-
Oliver Hamlet authored
For completeness I've implemented escaping for characters outside the basic multilingual plane, but it doesn't get used (as there's no EscapeAsAsciiJson emitter option implemented).
-
- 06 Jul, 2020 1 commit
-
-
Chen authored
-
- 02 Jul, 2020 1 commit
-
-
Raffaello Bertini authored
Inside of a sequence or map, `YAML::Newline` wouldn't reset the collection state, which would cause behavior like this: ``` nodeA: k: [{i: 0}, {i:1}, ]NodeB: k: [{i: 0}, {i:1}, ] ```
-
- 29 Jun, 2020 1 commit
-
-
Chen authored
* Support kinds of emitter format-setting for YAML::Null. * update the code and test cases * add the comment //fallthrough
-
- 17 Jun, 2020 1 commit
-
-
Chen authored
* fix issue752: generate right long keys * Improve the readability of test cases * update to raw string literal
-
- 31 May, 2020 1 commit
-
-
Chen authored
-
- 04 Aug, 2019 1 commit
-
-
Jeppe Blicher Tarp authored
Specifically, printing `.nan`, `.inf`, and `-.inf`, respectively, as per the spec section 10.2.1.4.
-
- 21 Dec, 2018 1 commit
-
-
Simon Gene Gottlieb authored
The issue is that numbers like 2.01 or 3.01 can not be precisely represented with binary floating point numbers. This replaces all occurrences of 'std::numeric_limits<T>::digits10 + 1' with 'std::numeric_limits<T>::max_digits10'. Background: Using 'std::numeric_limits<T>::digits10 + 1' is not precise enough. Converting a 'float' into a 'string' and back to a 'float' will not always produce the original 'float' value. To guarantee that the 'string' representation has sufficient precision the value 'std::numeric_limits<T>::max_digits10' has to be used.
-
- 02 Dec, 2016 1 commit
-
-
butataatawa authored
-
- 12 Oct, 2016 1 commit
-
-
Jesse Beder authored
-
- 10 Jan, 2016 1 commit
-
-
Jesse Beder authored
-
- 24 Jan, 2015 3 commits
-
-
Jesse Beder authored
-
Jesse Beder authored
-
Jesse Beder authored
Add EmitterStyle, which will allow sequence or map style (i.e., flow or block) to be preserved between parsing and emitting
-
- 23 Mar, 2014 1 commit
-
-
Jesse Beder authored
-