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 maps with newlines are allowed in YAML, but not JAML.
# JAML's inline syntax is intentionally compact/single-line.
# For multi-line maps, use JAML's indentation-based block syntax.
# (YAML oddly rejects trailing commas, but JAML allows them in inline syntax.)
inline_map_nl: {
  a: 1, 
  b: 2, 
  c: 3
}