jaml 0.2.0

A Rust library for parsing and formatting JAML (Just Another Markup Language)
Documentation
1
2
3
4
5
6
7
8
9
# Inline lists with newlines are allowed in YAML, but not JAML.
# JAML's inline syntax is intentionally compact/single-line.
# For multi-line lists, use JAML's indentation-based block syntax.
# (YAML oddly rejects trailing commas, but JAML allows them in inline syntax.)
inline_list_nl: [
  1,
  2,
  3
]