https://github.com/drmingdrmer/lua-yaml
yaml for lua in c
https://github.com/drmingdrmer/lua-yaml
c lua yaml
Last synced: about 1 month ago
JSON representation
yaml for lua in c
- Host: GitHub
- URL: https://github.com/drmingdrmer/lua-yaml
- Owner: drmingdrmer
- License: mit
- Created: 2020-02-24T02:19:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-24T03:11:32.000Z (over 6 years ago)
- Last Synced: 2024-04-14T09:05:01.002Z (about 2 years ago)
- Topics: c, lua, yaml
- Language: C
- Size: 61.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: HISTORY
- License: LICENSE
Awesome Lists containing this project
README
NAME
yaml - Lua YAML serialization using LibYAML
SYNOPSIS
require 'yaml'
serialized = yaml.dump({ 1, 2, 3, 4 })
content = yaml.load(serialized)
DESCRIPTION
This module is a Lua binding for Kirill Siminov's excellent LibYAML.
LibYAML is generally considered to be the best C YAML 1.1 implementation.
LibYAML 0.1.3 is included as part of this release.
This module defines the functions dump, load, and configure within the
global yaml table.
Portions of this software were inspired by Perl's YAML::LibYAML module by
Ingy d�t Net.
SEE ALSO
* LibYAML (http://pyyaml.org/wiki/LibYAML)
* luayaml: libsyck YAML binding (http://luaforge.net/projects/luayaml)
* YAML::LibYAML (http://search.cpan.org/~nuffin/YAML-LibYAML)
AUTHOR
Andrew Danforth
If you are using this module successfully I would love to hear from you.
COPYRIGHT
Copyright (c) 2009, Andrew Danforth
THANKS
Thanks to the following people for suggestions and patches:
Peter Mawhorter
Cyril Romain
Adrian Sampson