2016-01-13 21:43:12 +00:00
|
|
|
=======
|
|
|
|
NimYAML
|
|
|
|
=======
|
|
|
|
|
2016-02-12 18:53:25 +00:00
|
|
|
Introduction
|
|
|
|
============
|
2016-02-02 20:14:56 +00:00
|
|
|
|
|
|
|
**NimYAML** is a pure YAML implementation for Nim. It is able to read from and
|
|
|
|
write to YAML character streams, and to serialize from and construct to native
|
|
|
|
Nim types. It exclusively supports
|
2019-09-01 02:18:18 +00:00
|
|
|
`YAML 1.2 <http://www.yaml.org/spec/1.2/spec.html>`_.
|
2016-02-12 18:53:25 +00:00
|
|
|
|
2016-02-16 19:44:40 +00:00
|
|
|
Source code can be found on `GitHub <https://github.com/flyx/NimYAML>`_. You can
|
|
|
|
install it with `Nimble <https://github.com/nim-lang/nimble>`_:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
2016-06-05 17:41:09 +00:00
|
|
|
nimble install yaml
|
2016-02-16 19:44:40 +00:00
|
|
|
|
2019-09-01 02:18:18 +00:00
|
|
|
%quickstart%0
|