Regenerated docs
This commit is contained in:
parent
9775f35120
commit
0a0e966a26
55 changed files with 4873 additions and 13281 deletions
|
@ -1,65 +1,84 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||
"http://www.w3.org/TR/html4/strict.dtd">
|
||||
|
||||
<html lang='en'>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" >
|
||||
<title>D:YAML 0.5 API documentation - D:YAML 0.5 API documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css">
|
||||
</head>
|
||||
|
||||
<body><div id="top">
|
||||
<div id="header">
|
||||
<img id="logo" alt="D:YAML logo" src="images/logo.png"><a id="main-heading" href="index.html">D:YAML 0.5 API documentation</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="navigation">
|
||||
<div class="navblock">
|
||||
<div id="toctop">
|
||||
<ul><li><a href="../index.html">Documentation home</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="navblock">
|
||||
<ul><li><a href="index.html">Main page</a></li>
|
||||
<li><a href="dyaml.constructor.html">dyaml.constructor</a></li>
|
||||
<li><a href="dyaml.dumper.html">dyaml.dumper</a></li>
|
||||
<li><a href="dyaml.exception.html">dyaml.exception</a></li>
|
||||
<li><a href="dyaml.hacks.html">dyaml.hacks</a></li>
|
||||
<li><a href="dyaml.linebreak.html">dyaml.linebreak</a></li>
|
||||
<li><a href="dyaml.loader.html">dyaml.loader</a></li>
|
||||
<li><a href="dyaml.node.html">dyaml.node</a></li>
|
||||
<li><a href="dyaml.representer.html">dyaml.representer</a></li>
|
||||
<li><a href="dyaml.resolver.html">dyaml.resolver</a></li>
|
||||
<li><a href="dyaml.style.html">dyaml.style</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<h1>D:YAML 0.5 API documentation</h1>
|
||||
<!-- Generated by Ddoc from ../doc/html/api/index.dd -->
|
||||
|
||||
|
||||
<p>This is the complete API documentation for D:YAML. It describes all classes, methods and
|
||||
global functions provided by the library. This is not the best place to start learning;
|
||||
it should serve as a reference when detailed information about D:YAML functionality is
|
||||
needed. To get started with D:YAML see <a href="../index.html">tutorials</a>.
|
||||
</p>
|
||||
|
||||
<p>Although each D:YAML module is documented on a separate page, you don't need to import
|
||||
individual modules. Importing the <i>yaml</i> module automatically imports all D:YAML
|
||||
functionality.
|
||||
</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div id="copyright">
|
||||
Copyright © Ferdinand Majerech 2011-2014. Based on <a href="http://www.pyyaml.org">PyYAML</a> by Kirill Simonov. |
|
||||
Page generated by AutoDDoc and <a href="http://www.digitalmars.com/d/2.0/ddoc.html">Ddoc</a>.
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<link rel="stylesheet" type="text/css" href="style.css"/>
|
||||
<script src="highlight.pack.js"></script>
|
||||
<title>Index</title>
|
||||
<base href=""/>
|
||||
<script src="search.js"></script>
|
||||
<script src="show_hide.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="main">
|
||||
<div class="breadcrumbs">
|
||||
<table id="results"></table>
|
||||
<a href="index.html" class="home">⌂</a><input type="search" id="search" placeholder="Search" onkeyup="searchSubmit(this.value, event)"/>
|
||||
Main Page
|
||||
</div>
|
||||
<div class="sidebar">
|
||||
<a href=".html#hide-toc" class="hide" id="hide-toc">«</a>
|
||||
<a href=".html#show-toc" class="show" id="show-toc">»</a>
|
||||
<div id="toc-id" class="toc">
|
||||
<ul><li><span class="package" onclick="show_hide('dyaml');">dyaml</span>
|
||||
<ul id="dyaml">
|
||||
<li>dyaml.<a href="dyaml/constructor.html">constructor</a></li>
|
||||
<li>dyaml.<a href="dyaml/dumper.html">dumper</a></li>
|
||||
<li>dyaml.<a href="dyaml/exception.html">exception</a></li>
|
||||
<li>dyaml.<a href="dyaml/hacks.html">hacks</a></li>
|
||||
<li>dyaml.<a href="dyaml/linebreak.html">linebreak</a></li>
|
||||
<li>dyaml.<a href="dyaml/loader.html">loader</a></li>
|
||||
<li>dyaml.<a href="dyaml/node.html">node</a></li>
|
||||
<li>dyaml.<a href="dyaml/representer.html">representer</a></li>
|
||||
<li>dyaml.<a href="dyaml/resolver.html">resolver</a></li>
|
||||
<li>dyaml.<a href="dyaml/style.html">style</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div></div>
|
||||
<div class="content">
|
||||
<table class="module-list">
|
||||
<tr><td class="module-name"><a href="dyaml/constructor.html">dyaml.constructor</a></td><td><p>Class that processes YAML mappings, sequences and scalars into nodes. This can be
|
||||
used to add custom data types. A tutorial can be found
|
||||
<a href="../tutorials/custom_types.html">here</a>.
|
||||
</p>
|
||||
</td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/dumper.html">dyaml.dumper</a></td><td><p>YAML dumper.
|
||||
</p>
|
||||
</td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/exception.html">dyaml.exception</a></td><td><p>Exceptions thrown by D:YAML and _exception related code.
|
||||
</p>
|
||||
</td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/hacks.html">dyaml.hacks</a></td><td><p>Functionality that may sometimes be needed but allows unsafe or unstandard behavior, and should only be used in specific cases.
|
||||
</p>
|
||||
</td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/linebreak.html">dyaml.linebreak</a></td><td></td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/loader.html">dyaml.loader</a></td><td><p>Class used to load YAML documents.
|
||||
</p>
|
||||
</td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/node.html">dyaml.node</a></td><td><p>Node of a YAML document. Used to read YAML data once it's loaded,
|
||||
and to prepare data to emit.
|
||||
</p>
|
||||
</td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/representer.html">dyaml.representer</a></td><td><p>YAML node _representer. Prepares YAML nodes for output. A tutorial can be
|
||||
found <a href="../tutorials/custom_types.html">here</a>. <br/>
|
||||
</p>
|
||||
</td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/resolver.html">dyaml.resolver</a></td><td><p>Implements a class that resolves YAML tags. This can be used to implicitly
|
||||
resolve tags for custom data types, removing the need to explicitly
|
||||
specify tags in YAML. A tutorial can be found
|
||||
<a href="../tutorials/custom_types.html">here</a>. <br/>
|
||||
</p>
|
||||
</td></tr>
|
||||
<tr><td class="module-name"><a href="dyaml/style.html">dyaml.style</a></td><td><p>YAML node formatting styles.
|
||||
</p>
|
||||
</td></tr>
|
||||
|
||||
</div>
|
||||
<footer>
|
||||
Generated with <a href="https://github.com/kiith-sa/harbored-mod">harbored-mod</a>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue