aboutsummaryrefslogtreecommitdiffstats
path: root/doc/c/overview.rst
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-11 22:43:02 -0400
committerDavid Robillard <d@drobilla.net>2023-05-11 23:12:04 -0400
commit60cbe5b9b6d42bd850c5ea39c06b6e182f9c2645 (patch)
treed10b1910875079f5724ff92b68d711a7e9a6804b /doc/c/overview.rst
parent86894351ffb6cc7f9fd9a4d63ba0a6eecc64d29d (diff)
downloadserd-60cbe5b9b6d42bd850c5ea39c06b6e182f9c2645.tar.gz
serd-60cbe5b9b6d42bd850c5ea39c06b6e182f9c2645.tar.bz2
serd-60cbe5b9b6d42bd850c5ea39c06b6e182f9c2645.zip
Clean up documentation and remove junk files from install
Diffstat (limited to 'doc/c/overview.rst')
-rw-r--r--doc/c/overview.rst26
1 files changed, 0 insertions, 26 deletions
diff --git a/doc/c/overview.rst b/doc/c/overview.rst
deleted file mode 100644
index b03615b9..00000000
--- a/doc/c/overview.rst
+++ /dev/null
@@ -1,26 +0,0 @@
-..
- Copyright 2020-2021 David Robillard <d@drobilla.net>
- SPDX-License-Identifier: ISC
-
-########
-Overview
-########
-
-.. default-domain:: c
-.. highlight:: c
-
-The API revolves around two main types: the :doc:`api/serd_reader`,
-which reads text and fires callbacks,
-and the :doc:`api/serd_writer`,
-which writes text when driven by corresponding functions.
-Both work in a streaming fashion but still support pretty-printing,
-so the pair can be used to pretty-print, translate,
-or otherwise process arbitrarily large documents very quickly.
-The context of a stream is tracked by the :doc:`api/serd_env`,
-which stores the current base URI and set of namespace prefixes.
-
-The complete API is declared in ``serd.h``:
-
-.. code-block:: c
-
- #include <serd/serd.h>