MuON is a format for configuration files and data interchange.
- Ease of reading and writing
- Short specification
- Comments!
- Simplicity
- Regular syntax
- No seldom-used escaping rules
- Only a few special characters: line feed, space,
",#and: - Smaller typical file size
- First-class schema support
- Common types supported
- Constraints
- Default values
- Optional and list types
- Choice values (sum types)
- Any type for schemaless branches
A list of books in various formats:
<book title="Pale Fire"
author="Vladimir Nabokov"
year="1962">
<character name="John Shade"
location="New Wye" />
<character name="Charles Kinbote"
location="Zembla" />
</book>
<book title="The Curious Incident of the Dog in the Night-Time"
author="Mark Haddon"
year="2003">
<character name="Christopher Boone"
location="Swindon" />
<character name="Siobhan" />
</book>{"book": [
{
"title": "Pale Fire",
"author": "Vladimir Nabokov",
"year": 1962,
"character": [
{"name": "John Shade", "location": "New Wye"},
{"name": "Charles Kinbote", "location": "Zembla"}
]
},
{
"title": "The Curious Incident of the Dog in the Night-Time",
"author": "Mark Haddon",
"year": 2003,
"character": [
{"name": "Christopher Boone", "location": "Swindon"},
{"name": "Siobhan"}
]
}
]}---
book:
- title: Pale Fire
author: Vladimir Nabokov
year: '1962'
character:
- name: John Shade
location: New Wye
- name: Charles Kinbote
location: Zembla
- title: The Curious Incident of the Dog in the Night-Time
author: Mark Haddon
year: '2003'
character:
- name: Christopher Boone
location: Swindon
- name: Siobhan[[book]]
title = "Pale Fire"
author = "Vladimir Nabokov"
year = 1962
[[character]]
name = "John Shade"
location = "New Wye"
[[character]]
name = "Charles Kinbote"
location = "Zembla"
[[book]]
title = "The Curious Incident of the Dog in the Night-Time"
author = "Mark Haddon"
year = 2003
[[character]]
name = "Christopher Boone"
location = "Swindon"
[[character]]
name = "Siobhan"book: Pale Fire
author: Vladimir Nabokov
year: 1962
character: John Shade
location: New Wye
character: Charles Kinbote
location: Zembla
book: The Curious Incident of the Dog in the Night-Time
author: Mark Haddon
year: 2003
character: Christopher Boone
location: Swindon
character: Siobhan
- Rust: muon-rs
If you know of any others, please make a PR with a link!