This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Evaluate a YAML document. | |
// | |
// + text - String YAML document | |
// + next - Function callback | |
// | |
// For example: | |
// | |
// loadYAML("this: is\nyaml:", function(err, obj) { | |
// if (err) throw err; | |
// console.dir(obj); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""# mud.py # | |
Mustache, Markdown, and YAML templates. | |
## Installation ## | |
Mud requires `python >= 2.5` and depends on the `yaml`, `pystache`, | |
and `markdown` packages. |