|
// retoor <retoor@molodetz.nl>
|
|
|
|
import "yaml" for Yaml
|
|
|
|
var yaml = "
|
|
sections:
|
|
- title: Getting Started
|
|
pages:
|
|
- file: index
|
|
title: Overview
|
|
- file: installation
|
|
title: Installation
|
|
- title: API Reference
|
|
pages:
|
|
- file: json
|
|
title: json
|
|
"
|
|
|
|
var nav = Yaml.parse(yaml)
|
|
System.print(nav["sections"][0]["title"]) // expect: Getting Started
|
|
System.print(nav["sections"][0]["pages"][0]["file"]) // expect: index
|
|
System.print(nav["sections"][0]["pages"][0]["title"]) // expect: Overview
|
|
System.print(nav["sections"][0]["pages"][1]["file"]) // expect: installation
|
|
System.print(nav["sections"][1]["title"]) // expect: API Reference
|
|
System.print(nav["sections"][1]["pages"][0]["file"]) // expect: json
|