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
15
# Start of file

# Comments in map
map: # map comment
  a: 1  # value comment

# Comments in list
list:
  - 1 # inline value with comment
  - 2
  - # comment with nested value
    - 3
    - 4

# End of file