https://github.com/breuleux/quaint-yaml
YAML support in Quaint
https://github.com/breuleux/quaint-yaml
quaint yaml
Last synced: about 1 month ago
JSON representation
YAML support in Quaint
- Host: GitHub
- URL: https://github.com/breuleux/quaint-yaml
- Owner: breuleux
- Created: 2015-09-30T16:49:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-02T05:34:37.000Z (over 8 years ago)
- Last Synced: 2025-04-14T20:09:58.649Z (about 1 month ago)
- Topics: quaint, yaml
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
quaint-yaml
===========YAML support for the `data` and `include` macros in
[Quaint](http://breuleux.github.io/quaint).## Install
quaint --setup yaml
## Usage
This will make a table with two rows and two columns:
```quaint
plugins :: yamlformat table :: data yaml ::
-
- one
- two
-
- un
- deux
```And this will import YAML from a file:
**data.yaml**
```yaml
a: 1
b: 7
```**file.q**
```quaint
include :: data.yaml{a} + {b} == 8
```## Options
There are no options at the moment.