diff --git a/autoddoc.cfg b/autoddoc.cfg index 15aea1f..741fd31 100644 --- a/autoddoc.cfg +++ b/autoddoc.cfg @@ -29,7 +29,7 @@ links = ../index.html Documentation home # Source files or patterns to ignore. Supports regexp syntax. # E.g; To ignore main.d and all source files in the test/ directory, # you would use: "main.d test/*" -ignore = test/*, examples/*, docsrc/*, autoddoc/*, yaml.d, unittest.d, cdc.d, dyaml/composer.d, dyaml/event.d, dyaml/parser.d, dyaml/reader.d, dyaml/scanner.d, dyaml/token.d, dyaml/util.d, dyaml/anchor.d, dyaml/emitter.d, dyaml/flags.d, dyaml/serializer.d, dyaml/sharedobject.d, dyaml/tag.d, dyaml/tagdirectives.d, dyaml/queue.d, dyaml/escapes.d, dyaml/fastcharsearch.d +ignore = test/*, examples/*, docsrc/*, autoddoc/*, yaml.d, unittest.d, cdc.d, dyaml/composer.d, dyaml/event.d, dyaml/parser.d, dyaml/reader.d, dyaml/scanner.d, dyaml/token.d, dyaml/util.d, dyaml/anchor.d, dyaml/emitter.d, dyaml/flags.d, dyaml/serializer.d, dyaml/sharedobject.d, dyaml/tag.d, dyaml/tagdirectives.d, dyaml/queue.d, dyaml/escapes.d, dyaml/fastcharsearch.d, dyaml/style.d [DDOC] # Command to use to generate the documentation. diff --git a/doc/doctrees/environment.pickle b/doc/doctrees/environment.pickle index ecb58be..2c074b7 100644 Binary files a/doc/doctrees/environment.pickle and b/doc/doctrees/environment.pickle differ diff --git a/doc/html/api/dyaml.loader.html b/doc/html/api/dyaml.loader.html index 1223a95..f3f3e8f 100644 --- a/doc/html/api/dyaml.loader.html +++ b/doc/html/api/dyaml.loader.html @@ -112,7 +112,7 @@
Construct a Loader to load YAML from a stream.
Parameters:Stream stream | -Stream to read from. Must be readable. | Stream to read from. Must be readable and seekable. |
Node scalar style. Used to remember style this node was loaded with.
+ +Node collection style. Used to remember style this node was loaded with.
+Used to represent YAML nodes various data types into scalar, sequence and mapping nodes ready for output.
+Represents YAML nodes of various data types as scalar, sequence and mapping nodes ready for output. +
+This class is used to add support for dumping of custom data types.
+
+
+ It can also override default node formatting styles for output.
Set default style for scalars. Invalid means the style is chosen automatically.
+ +Set default style for collections. Invalid means the style is chosen automatically.
+Represent a scalar with specified tag.
@@ -177,6 +192,8 @@Represent a sequence with specified tag, representing children first.
@@ -208,6 +225,8 @@Represent a mapping with specified tag, representing children first.
@@ -242,6 +261,8 @@