Files
OnJava8/docs/_style/prism-master/tests/languages/yaml/scalar_feature.test
2019-03-30 20:31:44 +08:00

23 lines
427 B
Plaintext

---
foo: >
Foo bar
baz
bar: |
Foo bar
baz
----------------------------------------------------
[
["punctuation", "---"],
["key", "foo"], ["punctuation", ":"],
["punctuation", ">"],
["scalar", "\r\n\tFoo bar\r\n\tbaz"],
["key", "bar"], ["punctuation", ":"],
["punctuation", "|"],
["scalar", "\r\n\tFoo bar\r\n\tbaz"]
]
----------------------------------------------------
Checks for scalars.