1# sources: 2# - https://en.wikipedia.org/wiki/YAML 3# - https://yaml.org/spec/1.1/ 4# - https://yaml.org/type/ 5 6directive_yaml="%YAML 1.2" 7directive_tag="%TAG !yaml! tag:yaml.org,2002:" 8directive_tag2="%TAG !m! !my-" 9true="true" 10caps_true="TRUE" 11caps_false="FALSE" 12literal_true="YES" 13literal_false="NO" 14false="false" 15start="---" 16comment="#" 17list="- " 18key="k: " 19walrus="=:" 20question_key="?k: " 21number="\"0e5\"" 22expand="!!" 23list="[a,b]" 24dict="{k: v, x: y}" 25value=": v" 26exponent="e+03" 27neg_inf="-.inf" 28nan=".NaN" 29end="..." 30quoted_key="'k'" 31newline="k: |" 32newline2="k: >" 33anchor="&a" 34reference="*a" 35type_binary="!!binary" 36type_bool="!!bool" 37type_float="!!float" 38type_int="!!int" 39type_map="!!map" 40type_merge="!!merge" 41type_null="!!null" 42type_omap="!!omap" 43type_pairs="!!pairs" 44type_seq="!!seq" 45type_set="!!set" 46type_str="!!str" 47type_timestamp="!!timestamp" 48type_value="!!value" 49type_yaml="!!yaml" 50type_python="!!python" 51merge = "<<" 52number_separation="_" 53decimal_number="+30_123" 54octal_number="0123" 55hex_number="0x_12_23" 56bin_number="0b1001_1001" 57sexa_number="123:34:75" 58complex_mapping="? " 59litteral_style=" |" 60folded_style=" >" 61timestamp="2001-12-14t21:59:43.10-05:00" 62escaped_unicode="\\u2029" 63"[" 64"]" 65"{" 66"}" 67"-" 68"," 69"&" 70"<<" 71":" 72"|" 73"!!" 74">" 75"\"" 76"'" 77integer="123" 78float="12.5" 79mantissa="1.3e+9" 80