README

changeset 0
3ebc0316f54f
equal deleted inserted replaced
-1:000000000000 0:3ebc0316f54f
1 NAME
2 yaml - Lua YAML serialization using LibYAML
3
4 SYNOPSIS
5 require 'yaml'
6
7 serialized = yaml.dump({ 1, 2, 3, 4 })
8 content = yaml.load(serialized)
9
10 DESCRIPTION
11 This module is a Lua binding for Kirill Siminov's excellent LibYAML.
12 LibYAML is generally considered to be the best C YAML 1.1 implementation.
13 LibYAML 0.1.3 is included as part of this release.
14
15 This module defines the functions dump, load, and configure within the
16 global yaml table.
17
18 Portions of this software were inspired by Perl's YAML::LibYAML module by
19 Ingy döt Net.
20
21 SEE ALSO
22 * LibYAML (http://pyyaml.org/wiki/LibYAML)
23 * luayaml: libsyck YAML binding (http://luaforge.net/projects/luayaml)
24 * YAML::LibYAML (http://search.cpan.org/~nuffin/YAML-LibYAML)
25
26 AUTHOR
27 Andrew Danforth <acd@weirdness.net>
28
29 If you are using this module successfully I would love to hear from you.
30
31 COPYRIGHT
32 Copyright (c) 2009, Andrew Danforth
33
34 THANKS
35 Thanks to the following people for suggestions and patches:
36
37 Peter Mawhorter
38 Cyril Romain
39 Adrian Sampson

mercurial