Removed mentions of std.stream from README.
This commit is contained in:
parent
601f10bf2f
commit
c8949226de
44
README.html
44
README.html
|
@ -3,13 +3,13 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.7: http://docutils.sourceforge.net/" />
|
||||
<meta name="generator" content="Docutils 0.11: http://docutils.sourceforge.net/" />
|
||||
<title>D:YAML 0.4</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 6253 2010-03-02 00:24:53Z milde $
|
||||
:Id: $Id: html4css1.css 7614 2013-02-21 15:55:51Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
@ -47,6 +47,10 @@ blockquote.epigraph {
|
|||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
|
@ -73,7 +77,7 @@ div.tip p.admonition-title {
|
|||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title {
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
@ -185,7 +189,7 @@ img.align-center, .figure.align-center, object.align-center {
|
|||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: left }
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
@ -245,10 +249,19 @@ pre.address {
|
|||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block {
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
@ -300,6 +313,21 @@ table.docutils th.field-name, table.docinfo th.docinfo-name {
|
|||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
@ -327,9 +355,7 @@ YAML. To start using it in your project, see the
|
|||
<a class="reference external" href="https://github.com/kiith-sa/D-YAML/wiki/Getting-Started">Getting Started</a>
|
||||
tutorial.</p>
|
||||
<p>D:YAML is still a work in progress. Its API is not stable and there might be
|
||||
compatibility breaking changes. For instance, currently some D:YAML API
|
||||
functions depend on the <tt class="docutils literal">std.stream</tt> module in Phobos. This module is expected
|
||||
to be rewritten in future and D:YAML will change accordingly.</p>
|
||||
compatibility breaking changes.</p>
|
||||
</div>
|
||||
<div class="section" id="features">
|
||||
<h1>Features</h1>
|
||||
|
@ -340,7 +366,7 @@ to be rewritten in future and D:YAML will change accordingly.</p>
|
|||
<li>No external dependencies.</li>
|
||||
<li>Supports all YAML 1.1 constructs. All examples from the YAML 1.1 specification
|
||||
are parsed correctly.</li>
|
||||
<li>Reads from and writes to YAML files as well as memory or user defined streams.</li>
|
||||
<li>Reads from and writes from/to YAML files or in-memory buffers.</li>
|
||||
<li>UTF-8, UTF-16 and UTF-32 encodings are supported, both big and little endian
|
||||
(plain ASCII also works as it is a subset of UTF-8).</li>
|
||||
<li>Support for both block (Python-like, based on indentation) and flow
|
||||
|
|
|
@ -20,9 +20,7 @@ YAML. To start using it in your project, see the
|
|||
tutorial.
|
||||
|
||||
D:YAML is still a work in progress. Its API is not stable and there might be
|
||||
compatibility breaking changes. For instance, currently some D:YAML API
|
||||
functions depend on the ``std.stream`` module in Phobos. This module is expected
|
||||
to be rewritten in future and D:YAML will change accordingly.
|
||||
compatibility breaking changes.
|
||||
|
||||
|
||||
--------
|
||||
|
@ -35,7 +33,7 @@ Features
|
|||
* No external dependencies.
|
||||
* Supports all YAML 1.1 constructs. All examples from the YAML 1.1 specification
|
||||
are parsed correctly.
|
||||
* Reads from and writes to YAML files as well as memory or user defined streams.
|
||||
* Reads from and writes from/to YAML files or in-memory buffers.
|
||||
* UTF-8, UTF-16 and UTF-32 encodings are supported, both big and little endian
|
||||
(plain ASCII also works as it is a subset of UTF-8).
|
||||
* Support for both block (Python-like, based on indentation) and flow
|
||||
|
|
Loading…
Reference in a new issue