aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/doc/typesystem_documentation.rst
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/doc/typesystem_documentation.rst')
-rw-r--r--sources/shiboken2/doc/typesystem_documentation.rst43
1 files changed, 0 insertions, 43 deletions
diff --git a/sources/shiboken2/doc/typesystem_documentation.rst b/sources/shiboken2/doc/typesystem_documentation.rst
deleted file mode 100644
index d73e43cb1..000000000
--- a/sources/shiboken2/doc/typesystem_documentation.rst
+++ /dev/null
@@ -1,43 +0,0 @@
-Manipulating Documentation
---------------------------
-
-inject-documentation
-^^^^^^^^^^^^^^^^^^^^
-
- The inject-documentation node inserts the documentation into the generated
- documentation. This node is a child of the object-type, value-type and
- modify-function nodes.
-
- .. code-block:: xml
-
- <value-type>
- <inject-documentation mode="append | prepend | replace" format="native | target" >
- // the documentation
- </inject-code>
- </value-type>
-
- The **mode** attribute default value is *replace*.
-
- The **format** attribute specifies when the documentation injection will
- occur and it accepts the following values:
-
- * native: Before XML<->Backend transformation occur, so the injected code *must* be a valid XML.
- * target: After XML<->Backend transformation occur, so the injected code *must* be a valid backend format.
-
- At the moment the only supported backend is Sphinx.
-
-modify-documentation
-^^^^^^^^^^^^^^^^^^^^
-
- The modify-documentation node allows you to change the auto-generated
- documentation. API Extractor transforms XML's from qdoc (the Qt documentation
- tool) into .rst files to be processed later using Sphinx. You can modify
- the XML before the transformation takes place.
-
- .. code-block:: xml
-
- <modify-documentation xpath="...">
- <!-- new documentation -->
- </modify-documentation>
-
- The **xpath** attribute is the XPath to the node that you want to modify.