mirror of
https://github.com/status-im/NimYAML.git
synced 2025-01-27 11:34:56 +00:00
fixes #93
This commit is contained in:
parent
a72966374f
commit
1346467b42
@ -1,4 +1,4 @@
|
|||||||
import yaml.serialization, streams
|
import yaml/serialization, streams
|
||||||
type Person = object
|
type Person = object
|
||||||
name : string
|
name : string
|
||||||
age : int32
|
age : int32
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import yaml.serialization, streams
|
import yaml/serialization, streams
|
||||||
type Person = object
|
type Person = object
|
||||||
name : string
|
name : string
|
||||||
age : int32
|
age : int32
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import yaml.serialization, yaml.presenter, streams
|
import yaml/serialization, yaml/presenter, streams
|
||||||
type Person = object
|
type Person = object
|
||||||
name: string
|
name: string
|
||||||
age: int32
|
age: int32
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import yaml.serialization, streams
|
import yaml/serialization, streams
|
||||||
type
|
type
|
||||||
Node = ref NodeObj
|
Node = ref NodeObj
|
||||||
NodeObj = object
|
NodeObj = object
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import yaml.serialization, streams
|
import yaml/serialization, streams
|
||||||
type
|
type
|
||||||
Node = ref NodeObj
|
Node = ref NodeObj
|
||||||
NodeObj = object
|
NodeObj = object
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import yaml.serialization, yaml.presenter, streams
|
import yaml/serialization, yaml/presenter, streams
|
||||||
type Person = object
|
type Person = object
|
||||||
name : string
|
name : string
|
||||||
age : int32
|
age : int32
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import yaml.serialization, streams
|
import yaml/serialization, streams
|
||||||
type Person = object
|
type Person = object
|
||||||
name : string
|
name : string
|
||||||
age : int32
|
age : int32
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## =======================
|
## =======================
|
||||||
## Module yaml.annotations
|
## Module yaml/annotations
|
||||||
## =======================
|
## =======================
|
||||||
##
|
##
|
||||||
## This module provides annotations for object fields that customize
|
## This module provides annotations for object fields that customize
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## ===============
|
## ===============
|
||||||
## Module yaml.dom
|
## Module yaml/dom
|
||||||
## ===============
|
## ===============
|
||||||
##
|
##
|
||||||
## This is the DOM API, which enables you to load YAML into a tree-like
|
## This is the DOM API, which enables you to load YAML into a tree-like
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## =================
|
## =================
|
||||||
## Module yaml.hints
|
## Module yaml/hints
|
||||||
## =================
|
## =================
|
||||||
##
|
##
|
||||||
## The hints API enables you to guess the type of YAML scalars.
|
## The hints API enables you to guess the type of YAML scalars.
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## ==================
|
## ==================
|
||||||
## Module yaml.parser
|
## Module yaml/parser
|
||||||
## ==================
|
## ==================
|
||||||
##
|
##
|
||||||
## This is the low-level parser API. A ``YamlParser`` enables you to parse any
|
## This is the low-level parser API. A ``YamlParser`` enables you to parse any
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## =====================
|
## =====================
|
||||||
## Module yaml.presenter
|
## Module yaml/presenter
|
||||||
## =====================
|
## =====================
|
||||||
##
|
##
|
||||||
## This is the presenter API, used for generating YAML character streams.
|
## This is the presenter API, used for generating YAML character streams.
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## =========================
|
## =========================
|
||||||
## Module yaml.serialization
|
## Module yaml/serialization
|
||||||
## =========================
|
## =========================
|
||||||
##
|
##
|
||||||
## This is the most high-level API of NimYAML. It enables you to parse YAML
|
## This is the most high-level API of NimYAML. It enables you to parse YAML
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## ==================
|
## ==================
|
||||||
## Module yaml.stream
|
## Module yaml/stream
|
||||||
## ==================
|
## ==================
|
||||||
##
|
##
|
||||||
## The stream API provides the basic data structure on which all low-level APIs
|
## The stream API provides the basic data structure on which all low-level APIs
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## ==================
|
## ==================
|
||||||
## Module yaml.taglib
|
## Module yaml/taglib
|
||||||
## ==================
|
## ==================
|
||||||
##
|
##
|
||||||
## The taglib API enables you to define custom tags for the types you are
|
## The taglib API enables you to define custom tags for the types you are
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# distribution, for details about the copyright.
|
# distribution, for details about the copyright.
|
||||||
|
|
||||||
## ==================
|
## ==================
|
||||||
## Module yaml.tojson
|
## Module yaml/tojson
|
||||||
## ==================
|
## ==================
|
||||||
##
|
##
|
||||||
## The tojson API enables you to parser a YAML character stream into the JSON
|
## The tojson API enables you to parser a YAML character stream into the JSON
|
||||||
|
Loading…
x
Reference in New Issue
Block a user