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
10
11
12
13
14
# Empty structures using inline syntax
empty_array: []
empty_object: {}
empty_string: ""
empty_binary_b64: b64""
empty_binary_hex: hex""

# Nested empties
nested:
  more:
    empties:
      - []
      - {}
      - ""