rstdoc


Namerstdoc JSON
Version 1.8.2 PyPI version JSON
download
home_pagehttps://github.com/rstdoc/rstdoc
Summaryrstdoc - support documentation in restructedText (rst)
upload_time2023-01-22 10:33:51
maintainer
docs_urlNone
authorRoland Puntaier
requires_python
licenseMIT
keywords documentation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
=================================
rstdoc(1) Version 1.8.2 \| rstdoc
=================================

See `background and documentation <https://rstdoc.readthedocs.io/en/latest/>`__.

Many companies use `DOCX <http://www.ecma-international.org/publications/standards/Ecma-376.htm>`_
and thus produce an information barrier.
Working with text is more integrated in the (software) development process.
A final format can be `DOCX`_, but, at least during development, text is better.

`Sphinx <http://www.sphinx-doc.org/en/stable/>`__
is an extension of `Docutils <http://docutils.sourceforge.net/>`__
used for many (software) projects,
but it does not support creation of `DOCX`_ files, which certain companies demand.
`Pandoc <https://pandoc.org/>`__
does support `DOCX`_, but does not support the Sphinx extensions,
hence ``:ref:`` and the like cannot be used.

This python package supports working with
`RST <http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_
as documentation format without depending on Sphinx.

- link RST documents using 
  `substitutions <http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#substitution-definitions>`__
  (generated in ``_links_xxx.r?st``)
- create a ``.tags`` file to jump around in an editor that support 
  `ctags <http://ctags.sourceforge.net/FORMAT>`__
- `RST`_ handling with python: reformat/create `RST`_ tables
- post-process Pandoc's conversion from `DOCX`_ to `RST`_
- pre-process Pandoc's conversion from `RST`_ to `DOCX`_
- Support in building with `WAF <https://github.com/waf-project/waf>`_ (or ``Makefile``)

  - expand
    `SimpleTemplate <https://bottlepy.org/docs/dev/stpl.html#simpletemplate-syntax>`_
    template files ``.stpl``
  - graphics files (``.tikz``, ``.svg``, ``.dot``,  ``.uml``, ``.eps`` or ``.stpl`` thereof, and ``.pyg``)
    are converted to ``.png``
    and placed into ``./_images`` or ``<updir>/_images``, if there, else into current directory.
  - a ``gen`` file specifies how `RST`_ should be generated from source code files (see ``dcx.py``)

The conventions used are shown

- by the example produced via ``rstdcx --rest/--stpl/--over/--ipdt smplfldr``
- by the documentation sources that can be found at
  https://github.com/rstdoc/rstdoc/tree/master/doc

``pip install rstdoc`` installs:

+-----------+-------------------+--------------------------------------------+
| Module    | CLI Script        | Description                                |
+===========+===================+============================================+
| dcx       | `rstdcx`_, rstdoc | create ``.tags``, labels and links         |
+-----------+-------------------+--------------------------------------------+
| fromdocx  | `rstfromdocx`_    | Convert DOCX to RST using Pandoc           |
+-----------+-------------------+--------------------------------------------+
| listtable | `rstlisttable`_   | Convert RST grid tables to list-tables     |
+-----------+-------------------+--------------------------------------------+
| untable   | `rstuntable`_     | Converts certain list-tables to paragraphs |
+-----------+-------------------+--------------------------------------------+
| reflow    | `rstreflow`_      | Reflow paragraphs and tables               |
+-----------+-------------------+--------------------------------------------+
| reimg     | `rstreimg`_       | Rename images referenced in the RST file   |
+-----------+-------------------+--------------------------------------------+
| retable   | `rstretable`_     | Transforms list tables to grid tables      |
+-----------+-------------------+--------------------------------------------+




rstdcx
======

restructuredText sources are split into two types of files:
main files considered by Sphinx, and included files.
Which of ``.rest``  or ``.rst`` is main or included is determined
by ``source_suffix`` in a ``<root>/conf.py``
or opposite to the extension of the included ``_links_sphinx.r?st`` file:

- if you have ``.. include:: /_links_sphinx.rest``,
  then the main file extension is ``.rst``

``rstdoc`` creates documentation (PDF, HTML, DOCX)
from restructuredText (``.rst``, ``.rest``) using either

- `Pandoc <https://pandoc.org>`__
- `Sphinx <http://www.sphinx-doc.org>`__
- Docutils
  `configurable <http://docutils.sourceforge.net/docs/user/config.html>`__

``rstdoc`` and ``rstdcx`` command line tools call ``dcx.py``.
which

- creates ``.tags`` to jump around with the editor

- handles `.stpl <https://bottlepy.org/docs/dev/stpl.html>`__ files

- processes ``gen`` files (see examples produced by --rest)

- creates links files (``_links_docx.r?st``, ``_links_sphinx.r?st``, ...)

- forwards known files to either Pandoc, Sphinx or Docutils

See example at the end of ``dcx.py``.
It is supposed to be used with a build tool.
``make`` and ``waf`` examples are included.

- Initialize example tree (add ``--rstrest`` to make ``.rst`` main and ``.rest`` included files):

  ::

      $ ./dcx.py --rest repo #repo/doc/{sy,ra,sr,dd,tp}.rest files OR
      $ ./dcx.py --stpl repo #repo/doc/{sy,ra,sr,dd,tp}.rest.stpl files
      $ ./dcx.py --ipdt repo #repo/pdt/AAA/{i,p,d,t}.rest.stpl files
      $ ./dcx.py --over repo #.rest all over

- Only create .tags and ``_links_xxx.r?st``:

  ::

    $ cd repo
    $ rstdoc

- Create the docs (and .tags and ``_links_xxx.r?st``) with **make**:

  ::

      $ make html #OR
      $ make epub #OR
      $ make latex #OR
      $ make docx #OR
      $ make pdf

  The latter two are done by Pandoc, the others by Sphinx.

- Create the docs (and .tags and ``_links_xxx.r?st``) with
  `waf <https://github.com/waf-project/waf>`__:

  Instead of using ``make`` one can load ``dcx.py`` (``rstdoc.dcx``) in
  `waf <https://github.com/waf-project/waf>`__.
  ``waf`` also considers all recursively included files,
  such that a change in any of them results in a rebuild.
  All files can have an additional ``.stpl`` extension to use
  `SimpleTemplate <https://bottlepy.org/docs/dev/stpl.html>`__.

  $ waf configure #also copies the latest version of waf in here
  $ waf --docs docx,sphinx_html,rst_odt
  $ #or you provide --docs during configure to always compile the docs

  - ``rst_xxx``: via
    `rst2xxx.py <http://docutils.sourceforge.net/docs/user/tools.html>`__
  - ``sphinx_xxx``: via `Sphinx <http://www.sphinx-doc.org>`__ and
  - just ``xxx``: via `Pandoc <https://pandoc.org>`__.


The following image language files should be parallel to the ``.r?st`` files.
They are automatically converted to ``.png``
and placed into ``./_images`` or ``<updir>/_images`` or else parallel to the file.

- ``.tikz`` or ``.tikz.stpl``.
  This needs LaTex.

- `.svg <http://svgpocketguide.com/book/>`__ or ``.svg.stpl``

- ``.dot`` or ``.dot.stpl``

  This needs `graphviz <https://graphviz.gitlab.io/gallery/>`__.

- `.uml <http://plantuml.com/command-line>`__ or ``.uml.stpl``

  This needs `plantuml <http://plantuml.com/command-line>`__ .
  Provide either

  - ``plantuml.bat`` with e.g. ``java -jar "%~dp0plantuml.jar" %*``  or
  - ``plantuml`` sh script with
    ``java -jar `dirname $BASH_SOURCE`/plantuml.jar "$@"``

- ``.eps`` or ``.eps.stpl`` embedded postscript files.

  This needs `inkscape <https://inkscape.org/en/>`__.

- ``.pyg`` contains python code that produces a graphic.
  If the python code defines a ``to_svg`` or a ``save_to_png`` function,
  then that is used, to create a png.
  Else the following is tried

  - ``pyx.canvas.canvas`` from the
    `pyx <http://pyx.sourceforge.net/manual/graphics.html>`__ library or
  - ``cairocffi.Surface`` from
    `cairocffi <https://cairocffi.readthedocs.io/en/stable/overview.html>`__
  - `matplotlib <https://matplotlib.org>`__.
    If ``matplotlib.pyplot.get_fignums()>1``
    the figures result in ``<name><fignum>.png``

  The same code or the file names can be used in a ``.r?st.stpl`` file
  with ``pngembed()`` or ``dcx.svgembed()`` to embed in html output.

  ::

     {{!svgembed("egpyx.pyg",outinfo)}}
     <%
     ansvg=svgembed('''
     from svgwrite import cm, mm, drawing
     d=drawing.Drawing(viewBox=('0 0 300 300'))
     d.add(d.circle(center=(2*cm, 2*cm), r='1cm', stroke='blue', stroke_width=9))
     '''.splitlines(),outinfo)
     %>
     {{!ansvg}}


Conventions
-----------

Files

  - main files and included files: ``.rest``, ``.rst`` or vice versa.
    ``.txt`` are for literally included files (use :literal: option).
  - templates separately rendered : ``*.rest.stpl`` and ``*.rst.stpl``
    template included: ``*.rst.tpl``
    Template lookup is done in
    ``.`` and ``..`` with respect to the current file.

    - with ``%include('some.rst.tpl', param="test")`` with optional parameters
    - with ``%globals().update(include('utility.rst.tpl'))``
      if it contains only definitions

Links

- ``.. _`id`:`` are *reST targets*.
  reST targets should not be template-generated.
  The template files should have a higher or equal number of targets
  than the generated file,
  in order for tags to jump to the template original.
  If one wants to generate reST targets,
  then this should better happen in a previous step,
  e.g. with ``gen`` files mentioned above.

- References use replacement
  `substitutions <http://docutils.sourceforge.net/docs/ref/rst/directives.html#replacement-text>`__:
  ``|id|``.

- If you want an overview of the linking (traceability),
  add ``.. include:: _traceability_file.rst``
  to ``index.rest`` or another ``.rest`` parallel to it.
  It is there in the example project, to include it in tests.
  ``_traceability_file.{svg,png,rst}`` are all in the same directory.

Link files are created in link roots, which are folders where the first main file
(``.rest`` or ``.rst``) is encoutered during depth-first traversal.
Non-overlapping link root paths produce separately linked file sets.

``.. include:: /_links_sphinx.r?st``, with the one initial ``/``
instead of a relative or absolute path,
will automatically search upward for the ``_links_xxx.r?st`` file
(``_sphinx`` is replaced by what is needed by the wanted target when the docs are generated).

Sphinx ``conf.py`` is augmented by configuration for Pandoc and Docutils.
It should be where the input file is, or better at the project root
to be usable with `waf <https://github.com/waf-project/waf>`__.

See the example project created with ``--rest/stpl/ipdt/over``
and the sources of the documentation of
`rstdoc <https://github.com/rstdoc/rstdoc>`__.


``rstdcx`` CLI
--------------

``rstdcx`` is the same as ``rstdoc``.

Without parameters: creates ``|substitution|`` links and .tags ctags for reST targets.

With two or three parameters: process file or dir to out file or dir
through Pandoc, Sphinx, Docutils (third parameter):

- ``html``, ``docx``, ``odt``, ``pdf``, ... uses  Pandoc.

- ``rst_html``, ``rst_odt``, ``rst_pdf``, ...  uses
  `rst2html <http://docutils.sourceforge.net/0.6/docs/user/tools.html>`__, ...

- ``sphinx_html``, ``sphinx_pdf``, ...  uses Sphinx.
  Sphinx provides a nice entry point via the
  `sphinx bootstrap theme <https://github.com/ryan-roemer/sphinx-bootstrap-theme>`__.

4th parameter onward become python defines usable in ``.stpl`` files.

Pdf output needs latex. Else you can make odt or docx and use

- win: ``swriter.exe --headless --convert-to pdf Untitled1.odt``
- linux: ``lowriter --headless --convert-to pdf Untitled1.odt``

Inkscape (.eps, .svg), Dot (.dot), Planuml (.uml), latex (.tex,.tikz)
are converted to .png into ``./_images`` or ``<updir>/_images`` or '.'.
Any of the files can be a SimpleTemplate template (xxx.yyy.stpl).

Configuration is in ``conf.py`` or ``../conf.py``.

``rstdoc --stpl|--rest|--ipdt|-over`` create sample project trees.

``--stpl`` with ``.rest.stpl`` template files,
``--rest`` with only a doc folder with ``.rest`` files,
``--ipdt`` with inform-plan-do-test enhancement cycles
``--over`` with ``.rest`` files all over the project tree including symbolic links

Examples
--------

Example folders (see wscript and Makefile there)::

    rstdoc --rest <folder> [--rstrest]
    rstdoc --stpl <folder> [--rstrest]
    rstdoc --ipdt <folder> [--rstrest]
    rstdoc --over <folder> [--rstrest]

Use ``--rstrest`` to produce ``.rst`` for the main file,
as ``.rest`` is not recognized by github/gitlab,
who also don't support file inclusion,
so no need for two extension anyway.

Examples usages with the files generated by ``rstdoc --stpl tmp``:

.. code-block:: sh

    cd tmp/doc
    rstdcx   #expand .stpl and produce .tag and _links_xxx files

    #expand stpl and append substitutions (for simple expansion use ``stpl <file> .``)
    rstdcx dd.rest.stpl - rest           # expand to stdout, appending dd.html substitutions, to pipe to Pandoc
    rstdcx dd.rest.stpl - html.          # as before
    rstdcx dd.rest.stpl - docx.          # expand to stdout, appending dd.docx substitutions, to pipe to Pandoc
    rstdcx dd.rest.stpl - newname.docx.  # expand template, appending substitutions for target newname.docx
    rstdcx dd.rest.stpl - html           # expand to stdout, already process through Pandoc to produce html on stdout
    rstdcx dd.rest.stpl                  # as before
    rstdcx sy.rest.stpl - rst_html       # expand template, already process through Docutils to produce html on stdout
    stpl sy.rest.stpl | rstdcx - - sy.html. # appending sy.html substitutions, e.g. to pipe to Pandoc
    stpl dd.rest.stpl | rstdcx - - dd.html  # appending tp.html substitutions and produce html on stdout via Pandoc
    rstdcx dd.rest.stpl dd.rest          # expand into dd.rest, appending substitutions for target dd.html
    rstdcx dd.rest.stpl dd.html html     # expand template, process through Pandoc to produce dd.html
    rstdcx dd.rest.stpl dd.html          # as before
    rstdcx dd.rest.stpl dd.html rst_html # expand template, already process through Docutils to produce dd.html
    rstdcx dd.rest.stpl dd.docx          # expand template, process through Pandoc to produce dd.docx
    rstdcx dd.rest.stpl dd.odt pandoc    # expand template, process through Pandoc to produce dd.odt
    rstdcx dd.rest.stpl dd.odt           # as before
    rstdcx dd.rest.stpl dd.odt rst_odt   # expand template, process through Docutils to produce dd.odt
    rstdcx dd.rest.stpl dd.odt rst       # as before
    rstdcx . build html                  # convert current dir to build output dir using pandoc
    rstdcx . build sphinx_html           # ... using sphinx (if no index.rest, every file separately)

    #Sphinx is not file-oriented
    #but with rstdcx you need to provide the files to give Sphinx ``master_doc`` (normally: index.rest)
    #Directly from ``.stpl`` does not work with Sphinx
    rstdcx index.rest ../build/index.html sphinx_html   # via Sphinx the output directory must be different

    #convert the graphics and place the into _images or <updir>/_images
    #if no _images directory exists they will be placed into the same directory
    rstdcx egcairo.pyg
    rstdcx egdot.dot.stpl
    rstdcx egeps.eps
    rstdcx egother.pyg
    rstdcx egplt.pyg
    rstdcx egpygal.pyg
    rstdcx egpyx.pyg
    rstdcx egsvg.svg.stpl
    rstdcx egtikz.tikz
    rstdcx egtikz1.tikz
    rstdcx eguml.uml

    #Convert graphics to a png (even if _images directory exists):
    rstdcx eguml.uml eguml.png

    #Files to other files:

    rstdoc dd.rest.stpl dd.rest
    rstdoc dd.rest.stpl dd.html html
    rstdoc dd.rest.stpl dd.html
    rstdoc sr.rest.stpl sr.html rst_html
    rstdoc dd.rest.stpl dd.docx
    rstdoc dd.rest.stpl dd.odt pandoc
    rstdoc dd.rest.stpl dd.odt
    rstdoc sr.rest.stpl sr.odt rst_odt
    rstdoc sr.rest.stpl sr.odt rst
    rstdoc index.rest build/index.html sphinx_html

    #Directories to other directories with out info:

    rstdoc . build html
    rstdoc . build sphinx_html

Grep with python re in .py, .rst, .rest, .stpl, .tpl::

    rstdoc --pygrep inline

Grep for keyword lines containing 'png'::

    rstdoc --kw png

Default keyword lines::

    .. {{{kw1,kw2
    .. {kw1,kw2}
    {{_ID3('kw1 kw2')}}
    %__ID3('kw1 kw2')
    :ID3: kw1 kw2


rstfromdocx
===========

| rstfromdocx: shell command
| fromdocx: rstdoc module

Convert DOCX to RST in a subfolder of current dir, named after the DOCX file.
It also creates ``conf.py``, ``index.py`` and ``Makefile``
and copies ``dcx.py`` into the folder.

See |rstdcx| for format conventions for the RST.

There are options to post-process through::

    --listtable (--join can be provided)
    --untable
    --reflow (--sentence True,  --join 0)
    --reimg

``rstfromdocx -lurg`` combines all of these.

To convert more DOCX documents into the same
RST documentation folder, proceed like this:

- rename/copy the original DOCX to the name you want for the ``.rest`` file
- run ``rstfromdocx -lurg doc1.docx``; instead of -lurg use your own options
- check the output in the ``doc1`` subfolder
- repeat the previous 2 steps with the next DOCX files
- create a new folder, e.g. ``doc``
- merge all other folders into that new folder

``fromdocx.docx_rst_5`` creates 5 different rst files with different postprocessing.

See |rstreflow| for an alternative proceeding.




rstlisttable
============

| rstlisttable: shell command
| listable: rstdoc module

Convert RST grid tables to list-tables.

#. Convert grid tables in a file to list-tables. The result is output to stdout::

    $ listtable.py input.rst

#. Convert several files::

    $ listtable.py input1.rst input2.rst
    $ listtable.py *.rst

#. Use pipe (but ``cat`` might not keep the encoding)::

    $ cat in.rst | listtable.py -  | untable.py - > out.rst

Options
-------
-j, --join       e.g.002. Join method per column: 0="".join; 1=" ".join; 2="\\n".join



rstuntable
==========

| rstuntable: shell command
| untable: rstdoc module

Convert tables of following format to paragraphs with an ID.
The '-' in ID is removed and the ID is made lower case.
**Bold** is removed.

.. list-table::
   :widths: 50 50
   :header-rows: 0

   * - **ID-XY-00**
     - text goes here

   * - **ID-XY-01**
     - text again goes here


If the first entry does contain no word chars or spaces between words,
then the table stays. For a different behavior replace paragraph23.

A file produced from a docx using pandoc or ``fromdocx.py`` will
need a pre-processing via ``rstlisttable`` to convert grid tables to ``list-table`` tables.
This is done in one step with ``rstfromdocx -lu doc.rst``.


rstreflow
=========

| rstreflow: shell command
| reflow: rstdoc module

Reflow tables and paragraphs in a rst document produced from a docx.

Post-process a docx in this order::

    rstfromdocx doc.docx
    rstlisttable doc/doc.rst > doc/tmp.rst
    rstuntable doc/tmp.rst > doc/tmp1.rst
    rstreflow doc/tmp1.rst > doc/tmp2.rst
    rstreimg doc/tmp2.rst > doc/tmp3.rst
    rm doc/doc.rst
    mv doc/tmp3.rst doc/doc.rst
    rm doc/tmp*

Check the intermediate results.

Else one can also do inplace::

    rstfromdocx doc.docx
    rstlisttable -i doc/doc.rst
    rstuntable -i doc/doc.rst
    rstreflow -i doc/doc.rst
    rstreimg -i doc/doc.rst

.. note:: DOCX to RST using Pandoc

   ``rstfromdocx -lurg doc.rst`` converts a docx to RST and
   does all the post-processing in one step.

   It is adviced, though, to compare the output with the original and do some manual
   corrections here and there.


rstreimg
========

| rstreimg: shell command
| reimg: rstdoc module

Reimg renames the images in the rst file and the files themselves.
It uses part of the document name and a number as new names.

This is useful, if more RST documents converted from DOCX
should be combined in one directory and
the names of the images have no meaning (image13,...).


rstretable
==========

| rstretable: shell command
| retable: rstdoc module

Transforms list tables to grid tables.

This file also contains the code from
the Vim plugin 
`vim-rst-tables-py3 <https://github.com/ossobv/vim-rst-tables-py3>`__,
plus some little fixes.
``rstdoc`` is used by the Vim plugin
`vim_py3_rst <https://github.com/rpuntaie/vim_py3_rst>`__
, which replaces
`vim-rst-tables-py3 <https://github.com/ossobv/vim-rst-tables-py3>`__.

.. |rstdcx| replace:: `rstdcx <file:#rstdcx>`__
.. |rstfromdocx| replace:: `rstfromdocx <file:#rstfromdocx>`__
.. |rstlisttable| replace:: `rstlisttable <file:#rstlisttable>`__
.. |rstuntable| replace:: `rstuntable <file:#rstuntable>`__
.. |rstreflow| replace:: `rstreflow <file:#rstreflow>`__
.. |rstreimg| replace:: `rstreimg <file:#rstreimg>`__
.. |rstretable| replace:: `rstretable <file:#rstretable>`__

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rstdoc/rstdoc",
    "name": "rstdoc",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Documentation",
    "author": "Roland Puntaier",
    "author_email": "roland.puntaier@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "\n=================================\nrstdoc(1) Version 1.8.2 \\| rstdoc\n=================================\n\nSee `background and documentation <https://rstdoc.readthedocs.io/en/latest/>`__.\n\nMany companies use `DOCX <http://www.ecma-international.org/publications/standards/Ecma-376.htm>`_\nand thus produce an information barrier.\nWorking with text is more integrated in the (software) development process.\nA final format can be `DOCX`_, but, at least during development, text is better.\n\n`Sphinx <http://www.sphinx-doc.org/en/stable/>`__\nis an extension of `Docutils <http://docutils.sourceforge.net/>`__\nused for many (software) projects,\nbut it does not support creation of `DOCX`_ files, which certain companies demand.\n`Pandoc <https://pandoc.org/>`__\ndoes support `DOCX`_, but does not support the Sphinx extensions,\nhence ``:ref:`` and the like cannot be used.\n\nThis python package supports working with\n`RST <http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_\nas documentation format without depending on Sphinx.\n\n- link RST documents using \n  `substitutions <http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#substitution-definitions>`__\n  (generated in ``_links_xxx.r?st``)\n- create a ``.tags`` file to jump around in an editor that support \n  `ctags <http://ctags.sourceforge.net/FORMAT>`__\n- `RST`_ handling with python: reformat/create `RST`_ tables\n- post-process Pandoc's conversion from `DOCX`_ to `RST`_\n- pre-process Pandoc's conversion from `RST`_ to `DOCX`_\n- Support in building with `WAF <https://github.com/waf-project/waf>`_ (or ``Makefile``)\n\n  - expand\n    `SimpleTemplate <https://bottlepy.org/docs/dev/stpl.html#simpletemplate-syntax>`_\n    template files ``.stpl``\n  - graphics files (``.tikz``, ``.svg``, ``.dot``,  ``.uml``, ``.eps`` or ``.stpl`` thereof, and ``.pyg``)\n    are converted to ``.png``\n    and placed into ``./_images`` or ``<updir>/_images``, if there, else into current directory.\n  - a ``gen`` file specifies how `RST`_ should be generated from source code files (see ``dcx.py``)\n\nThe conventions used are shown\n\n- by the example produced via ``rstdcx --rest/--stpl/--over/--ipdt smplfldr``\n- by the documentation sources that can be found at\n  https://github.com/rstdoc/rstdoc/tree/master/doc\n\n``pip install rstdoc`` installs:\n\n+-----------+-------------------+--------------------------------------------+\n| Module    | CLI Script        | Description                                |\n+===========+===================+============================================+\n| dcx       | `rstdcx`_, rstdoc | create ``.tags``, labels and links         |\n+-----------+-------------------+--------------------------------------------+\n| fromdocx  | `rstfromdocx`_    | Convert DOCX to RST using Pandoc           |\n+-----------+-------------------+--------------------------------------------+\n| listtable | `rstlisttable`_   | Convert RST grid tables to list-tables     |\n+-----------+-------------------+--------------------------------------------+\n| untable   | `rstuntable`_     | Converts certain list-tables to paragraphs |\n+-----------+-------------------+--------------------------------------------+\n| reflow    | `rstreflow`_      | Reflow paragraphs and tables               |\n+-----------+-------------------+--------------------------------------------+\n| reimg     | `rstreimg`_       | Rename images referenced in the RST file   |\n+-----------+-------------------+--------------------------------------------+\n| retable   | `rstretable`_     | Transforms list tables to grid tables      |\n+-----------+-------------------+--------------------------------------------+\n\n\n\n\nrstdcx\n======\n\nrestructuredText sources are split into two types of files:\nmain files considered by Sphinx, and included files.\nWhich of ``.rest``  or ``.rst`` is main or included is determined\nby ``source_suffix`` in a ``<root>/conf.py``\nor opposite to the extension of the included ``_links_sphinx.r?st`` file:\n\n- if you have ``.. include:: /_links_sphinx.rest``,\n  then the main file extension is ``.rst``\n\n``rstdoc`` creates documentation (PDF, HTML, DOCX)\nfrom restructuredText (``.rst``, ``.rest``) using either\n\n- `Pandoc <https://pandoc.org>`__\n- `Sphinx <http://www.sphinx-doc.org>`__\n- Docutils\n  `configurable <http://docutils.sourceforge.net/docs/user/config.html>`__\n\n``rstdoc`` and ``rstdcx`` command line tools call ``dcx.py``.\nwhich\n\n- creates ``.tags`` to jump around with the editor\n\n- handles `.stpl <https://bottlepy.org/docs/dev/stpl.html>`__ files\n\n- processes ``gen`` files (see examples produced by --rest)\n\n- creates links files (``_links_docx.r?st``, ``_links_sphinx.r?st``, ...)\n\n- forwards known files to either Pandoc, Sphinx or Docutils\n\nSee example at the end of ``dcx.py``.\nIt is supposed to be used with a build tool.\n``make`` and ``waf`` examples are included.\n\n- Initialize example tree (add ``--rstrest`` to make ``.rst`` main and ``.rest`` included files):\n\n  ::\n\n      $ ./dcx.py --rest repo #repo/doc/{sy,ra,sr,dd,tp}.rest files OR\n      $ ./dcx.py --stpl repo #repo/doc/{sy,ra,sr,dd,tp}.rest.stpl files\n      $ ./dcx.py --ipdt repo #repo/pdt/AAA/{i,p,d,t}.rest.stpl files\n      $ ./dcx.py --over repo #.rest all over\n\n- Only create .tags and ``_links_xxx.r?st``:\n\n  ::\n\n    $ cd repo\n    $ rstdoc\n\n- Create the docs (and .tags and ``_links_xxx.r?st``) with **make**:\n\n  ::\n\n      $ make html #OR\n      $ make epub #OR\n      $ make latex #OR\n      $ make docx #OR\n      $ make pdf\n\n  The latter two are done by Pandoc, the others by Sphinx.\n\n- Create the docs (and .tags and ``_links_xxx.r?st``) with\n  `waf <https://github.com/waf-project/waf>`__:\n\n  Instead of using ``make`` one can load ``dcx.py`` (``rstdoc.dcx``) in\n  `waf <https://github.com/waf-project/waf>`__.\n  ``waf`` also considers all recursively included files,\n  such that a change in any of them results in a rebuild.\n  All files can have an additional ``.stpl`` extension to use\n  `SimpleTemplate <https://bottlepy.org/docs/dev/stpl.html>`__.\n\n  $ waf configure #also copies the latest version of waf in here\n  $ waf --docs docx,sphinx_html,rst_odt\n  $ #or you provide --docs during configure to always compile the docs\n\n  - ``rst_xxx``: via\n    `rst2xxx.py <http://docutils.sourceforge.net/docs/user/tools.html>`__\n  - ``sphinx_xxx``: via `Sphinx <http://www.sphinx-doc.org>`__ and\n  - just ``xxx``: via `Pandoc <https://pandoc.org>`__.\n\n\nThe following image language files should be parallel to the ``.r?st`` files.\nThey are automatically converted to ``.png``\nand placed into ``./_images`` or ``<updir>/_images`` or else parallel to the file.\n\n- ``.tikz`` or ``.tikz.stpl``.\n  This needs LaTex.\n\n- `.svg <http://svgpocketguide.com/book/>`__ or ``.svg.stpl``\n\n- ``.dot`` or ``.dot.stpl``\n\n  This needs `graphviz <https://graphviz.gitlab.io/gallery/>`__.\n\n- `.uml <http://plantuml.com/command-line>`__ or ``.uml.stpl``\n\n  This needs `plantuml <http://plantuml.com/command-line>`__ .\n  Provide either\n\n  - ``plantuml.bat`` with e.g. ``java -jar \"%~dp0plantuml.jar\" %*``  or\n  - ``plantuml`` sh script with\n    ``java -jar `dirname $BASH_SOURCE`/plantuml.jar \"$@\"``\n\n- ``.eps`` or ``.eps.stpl`` embedded postscript files.\n\n  This needs `inkscape <https://inkscape.org/en/>`__.\n\n- ``.pyg`` contains python code that produces a graphic.\n  If the python code defines a ``to_svg`` or a ``save_to_png`` function,\n  then that is used, to create a png.\n  Else the following is tried\n\n  - ``pyx.canvas.canvas`` from the\n    `pyx <http://pyx.sourceforge.net/manual/graphics.html>`__ library or\n  - ``cairocffi.Surface`` from\n    `cairocffi <https://cairocffi.readthedocs.io/en/stable/overview.html>`__\n  - `matplotlib <https://matplotlib.org>`__.\n    If ``matplotlib.pyplot.get_fignums()>1``\n    the figures result in ``<name><fignum>.png``\n\n  The same code or the file names can be used in a ``.r?st.stpl`` file\n  with ``pngembed()`` or ``dcx.svgembed()`` to embed in html output.\n\n  ::\n\n     {{!svgembed(\"egpyx.pyg\",outinfo)}}\n     <%\n     ansvg=svgembed('''\n     from svgwrite import cm, mm, drawing\n     d=drawing.Drawing(viewBox=('0 0 300 300'))\n     d.add(d.circle(center=(2*cm, 2*cm), r='1cm', stroke='blue', stroke_width=9))\n     '''.splitlines(),outinfo)\n     %>\n     {{!ansvg}}\n\n\nConventions\n-----------\n\nFiles\n\n  - main files and included files: ``.rest``, ``.rst`` or vice versa.\n    ``.txt`` are for literally included files (use :literal: option).\n  - templates separately rendered : ``*.rest.stpl`` and ``*.rst.stpl``\n    template included: ``*.rst.tpl``\n    Template lookup is done in\n    ``.`` and ``..`` with respect to the current file.\n\n    - with ``%include('some.rst.tpl', param=\"test\")`` with optional parameters\n    - with ``%globals().update(include('utility.rst.tpl'))``\n      if it contains only definitions\n\nLinks\n\n- ``.. _`id`:`` are *reST targets*.\n  reST targets should not be template-generated.\n  The template files should have a higher or equal number of targets\n  than the generated file,\n  in order for tags to jump to the template original.\n  If one wants to generate reST targets,\n  then this should better happen in a previous step,\n  e.g. with ``gen`` files mentioned above.\n\n- References use replacement\n  `substitutions <http://docutils.sourceforge.net/docs/ref/rst/directives.html#replacement-text>`__:\n  ``|id|``.\n\n- If you want an overview of the linking (traceability),\n  add ``.. include:: _traceability_file.rst``\n  to ``index.rest`` or another ``.rest`` parallel to it.\n  It is there in the example project, to include it in tests.\n  ``_traceability_file.{svg,png,rst}`` are all in the same directory.\n\nLink files are created in link roots, which are folders where the first main file\n(``.rest`` or ``.rst``) is encoutered during depth-first traversal.\nNon-overlapping link root paths produce separately linked file sets.\n\n``.. include:: /_links_sphinx.r?st``, with the one initial ``/``\ninstead of a relative or absolute path,\nwill automatically search upward for the ``_links_xxx.r?st`` file\n(``_sphinx`` is replaced by what is needed by the wanted target when the docs are generated).\n\nSphinx ``conf.py`` is augmented by configuration for Pandoc and Docutils.\nIt should be where the input file is, or better at the project root\nto be usable with `waf <https://github.com/waf-project/waf>`__.\n\nSee the example project created with ``--rest/stpl/ipdt/over``\nand the sources of the documentation of\n`rstdoc <https://github.com/rstdoc/rstdoc>`__.\n\n\n``rstdcx`` CLI\n--------------\n\n``rstdcx`` is the same as ``rstdoc``.\n\nWithout parameters: creates ``|substitution|`` links and .tags ctags for reST targets.\n\nWith two or three parameters: process file or dir to out file or dir\nthrough Pandoc, Sphinx, Docutils (third parameter):\n\n- ``html``, ``docx``, ``odt``, ``pdf``, ... uses  Pandoc.\n\n- ``rst_html``, ``rst_odt``, ``rst_pdf``, ...  uses\n  `rst2html <http://docutils.sourceforge.net/0.6/docs/user/tools.html>`__, ...\n\n- ``sphinx_html``, ``sphinx_pdf``, ...  uses Sphinx.\n  Sphinx provides a nice entry point via the\n  `sphinx bootstrap theme <https://github.com/ryan-roemer/sphinx-bootstrap-theme>`__.\n\n4th parameter onward become python defines usable in ``.stpl`` files.\n\nPdf output needs latex. Else you can make odt or docx and use\n\n- win: ``swriter.exe --headless --convert-to pdf Untitled1.odt``\n- linux: ``lowriter --headless --convert-to pdf Untitled1.odt``\n\nInkscape (.eps, .svg), Dot (.dot), Planuml (.uml), latex (.tex,.tikz)\nare converted to .png into ``./_images`` or ``<updir>/_images`` or '.'.\nAny of the files can be a SimpleTemplate template (xxx.yyy.stpl).\n\nConfiguration is in ``conf.py`` or ``../conf.py``.\n\n``rstdoc --stpl|--rest|--ipdt|-over`` create sample project trees.\n\n``--stpl`` with ``.rest.stpl`` template files,\n``--rest`` with only a doc folder with ``.rest`` files,\n``--ipdt`` with inform-plan-do-test enhancement cycles\n``--over`` with ``.rest`` files all over the project tree including symbolic links\n\nExamples\n--------\n\nExample folders (see wscript and Makefile there)::\n\n    rstdoc --rest <folder> [--rstrest]\n    rstdoc --stpl <folder> [--rstrest]\n    rstdoc --ipdt <folder> [--rstrest]\n    rstdoc --over <folder> [--rstrest]\n\nUse ``--rstrest`` to produce ``.rst`` for the main file,\nas ``.rest`` is not recognized by github/gitlab,\nwho also don't support file inclusion,\nso no need for two extension anyway.\n\nExamples usages with the files generated by ``rstdoc --stpl tmp``:\n\n.. code-block:: sh\n\n    cd tmp/doc\n    rstdcx   #expand .stpl and produce .tag and _links_xxx files\n\n    #expand stpl and append substitutions (for simple expansion use ``stpl <file> .``)\n    rstdcx dd.rest.stpl - rest           # expand to stdout, appending dd.html substitutions, to pipe to Pandoc\n    rstdcx dd.rest.stpl - html.          # as before\n    rstdcx dd.rest.stpl - docx.          # expand to stdout, appending dd.docx substitutions, to pipe to Pandoc\n    rstdcx dd.rest.stpl - newname.docx.  # expand template, appending substitutions for target newname.docx\n    rstdcx dd.rest.stpl - html           # expand to stdout, already process through Pandoc to produce html on stdout\n    rstdcx dd.rest.stpl                  # as before\n    rstdcx sy.rest.stpl - rst_html       # expand template, already process through Docutils to produce html on stdout\n    stpl sy.rest.stpl | rstdcx - - sy.html. # appending sy.html substitutions, e.g. to pipe to Pandoc\n    stpl dd.rest.stpl | rstdcx - - dd.html  # appending tp.html substitutions and produce html on stdout via Pandoc\n    rstdcx dd.rest.stpl dd.rest          # expand into dd.rest, appending substitutions for target dd.html\n    rstdcx dd.rest.stpl dd.html html     # expand template, process through Pandoc to produce dd.html\n    rstdcx dd.rest.stpl dd.html          # as before\n    rstdcx dd.rest.stpl dd.html rst_html # expand template, already process through Docutils to produce dd.html\n    rstdcx dd.rest.stpl dd.docx          # expand template, process through Pandoc to produce dd.docx\n    rstdcx dd.rest.stpl dd.odt pandoc    # expand template, process through Pandoc to produce dd.odt\n    rstdcx dd.rest.stpl dd.odt           # as before\n    rstdcx dd.rest.stpl dd.odt rst_odt   # expand template, process through Docutils to produce dd.odt\n    rstdcx dd.rest.stpl dd.odt rst       # as before\n    rstdcx . build html                  # convert current dir to build output dir using pandoc\n    rstdcx . build sphinx_html           # ... using sphinx (if no index.rest, every file separately)\n\n    #Sphinx is not file-oriented\n    #but with rstdcx you need to provide the files to give Sphinx ``master_doc`` (normally: index.rest)\n    #Directly from ``.stpl`` does not work with Sphinx\n    rstdcx index.rest ../build/index.html sphinx_html   # via Sphinx the output directory must be different\n\n    #convert the graphics and place the into _images or <updir>/_images\n    #if no _images directory exists they will be placed into the same directory\n    rstdcx egcairo.pyg\n    rstdcx egdot.dot.stpl\n    rstdcx egeps.eps\n    rstdcx egother.pyg\n    rstdcx egplt.pyg\n    rstdcx egpygal.pyg\n    rstdcx egpyx.pyg\n    rstdcx egsvg.svg.stpl\n    rstdcx egtikz.tikz\n    rstdcx egtikz1.tikz\n    rstdcx eguml.uml\n\n    #Convert graphics to a png (even if _images directory exists):\n    rstdcx eguml.uml eguml.png\n\n    #Files to other files:\n\n    rstdoc dd.rest.stpl dd.rest\n    rstdoc dd.rest.stpl dd.html html\n    rstdoc dd.rest.stpl dd.html\n    rstdoc sr.rest.stpl sr.html rst_html\n    rstdoc dd.rest.stpl dd.docx\n    rstdoc dd.rest.stpl dd.odt pandoc\n    rstdoc dd.rest.stpl dd.odt\n    rstdoc sr.rest.stpl sr.odt rst_odt\n    rstdoc sr.rest.stpl sr.odt rst\n    rstdoc index.rest build/index.html sphinx_html\n\n    #Directories to other directories with out info:\n\n    rstdoc . build html\n    rstdoc . build sphinx_html\n\nGrep with python re in .py, .rst, .rest, .stpl, .tpl::\n\n    rstdoc --pygrep inline\n\nGrep for keyword lines containing 'png'::\n\n    rstdoc --kw png\n\nDefault keyword lines::\n\n    .. {{{kw1,kw2\n    .. {kw1,kw2}\n    {{_ID3('kw1 kw2')}}\n    %__ID3('kw1 kw2')\n    :ID3: kw1 kw2\n\n\nrstfromdocx\n===========\n\n| rstfromdocx: shell command\n| fromdocx: rstdoc module\n\nConvert DOCX to RST in a subfolder of current dir, named after the DOCX file.\nIt also creates ``conf.py``, ``index.py`` and ``Makefile``\nand copies ``dcx.py`` into the folder.\n\nSee |rstdcx| for format conventions for the RST.\n\nThere are options to post-process through::\n\n    --listtable (--join can be provided)\n    --untable\n    --reflow (--sentence True,  --join 0)\n    --reimg\n\n``rstfromdocx -lurg`` combines all of these.\n\nTo convert more DOCX documents into the same\nRST documentation folder, proceed like this:\n\n- rename/copy the original DOCX to the name you want for the ``.rest`` file\n- run ``rstfromdocx -lurg doc1.docx``; instead of -lurg use your own options\n- check the output in the ``doc1`` subfolder\n- repeat the previous 2 steps with the next DOCX files\n- create a new folder, e.g. ``doc``\n- merge all other folders into that new folder\n\n``fromdocx.docx_rst_5`` creates 5 different rst files with different postprocessing.\n\nSee |rstreflow| for an alternative proceeding.\n\n\n\n\nrstlisttable\n============\n\n| rstlisttable: shell command\n| listable: rstdoc module\n\nConvert RST grid tables to list-tables.\n\n#. Convert grid tables in a file to list-tables. The result is output to stdout::\n\n    $ listtable.py input.rst\n\n#. Convert several files::\n\n    $ listtable.py input1.rst input2.rst\n    $ listtable.py *.rst\n\n#. Use pipe (but ``cat`` might not keep the encoding)::\n\n    $ cat in.rst | listtable.py -  | untable.py - > out.rst\n\nOptions\n-------\n-j, --join       e.g.002. Join method per column: 0=\"\".join; 1=\" \".join; 2=\"\\\\n\".join\n\n\n\nrstuntable\n==========\n\n| rstuntable: shell command\n| untable: rstdoc module\n\nConvert tables of following format to paragraphs with an ID.\nThe '-' in ID is removed and the ID is made lower case.\n**Bold** is removed.\n\n.. list-table::\n   :widths: 50 50\n   :header-rows: 0\n\n   * - **ID-XY-00**\n     - text goes here\n\n   * - **ID-XY-01**\n     - text again goes here\n\n\nIf the first entry does contain no word chars or spaces between words,\nthen the table stays. For a different behavior replace paragraph23.\n\nA file produced from a docx using pandoc or ``fromdocx.py`` will\nneed a pre-processing via ``rstlisttable`` to convert grid tables to ``list-table`` tables.\nThis is done in one step with ``rstfromdocx -lu doc.rst``.\n\n\nrstreflow\n=========\n\n| rstreflow: shell command\n| reflow: rstdoc module\n\nReflow tables and paragraphs in a rst document produced from a docx.\n\nPost-process a docx in this order::\n\n    rstfromdocx doc.docx\n    rstlisttable doc/doc.rst > doc/tmp.rst\n    rstuntable doc/tmp.rst > doc/tmp1.rst\n    rstreflow doc/tmp1.rst > doc/tmp2.rst\n    rstreimg doc/tmp2.rst > doc/tmp3.rst\n    rm doc/doc.rst\n    mv doc/tmp3.rst doc/doc.rst\n    rm doc/tmp*\n\nCheck the intermediate results.\n\nElse one can also do inplace::\n\n    rstfromdocx doc.docx\n    rstlisttable -i doc/doc.rst\n    rstuntable -i doc/doc.rst\n    rstreflow -i doc/doc.rst\n    rstreimg -i doc/doc.rst\n\n.. note:: DOCX to RST using Pandoc\n\n   ``rstfromdocx -lurg doc.rst`` converts a docx to RST and\n   does all the post-processing in one step.\n\n   It is adviced, though, to compare the output with the original and do some manual\n   corrections here and there.\n\n\nrstreimg\n========\n\n| rstreimg: shell command\n| reimg: rstdoc module\n\nReimg renames the images in the rst file and the files themselves.\nIt uses part of the document name and a number as new names.\n\nThis is useful, if more RST documents converted from DOCX\nshould be combined in one directory and\nthe names of the images have no meaning (image13,...).\n\n\nrstretable\n==========\n\n| rstretable: shell command\n| retable: rstdoc module\n\nTransforms list tables to grid tables.\n\nThis file also contains the code from\nthe Vim plugin \n`vim-rst-tables-py3 <https://github.com/ossobv/vim-rst-tables-py3>`__,\nplus some little fixes.\n``rstdoc`` is used by the Vim plugin\n`vim_py3_rst <https://github.com/rpuntaie/vim_py3_rst>`__\n, which replaces\n`vim-rst-tables-py3 <https://github.com/ossobv/vim-rst-tables-py3>`__.\n\n.. |rstdcx| replace:: `rstdcx <file:#rstdcx>`__\n.. |rstfromdocx| replace:: `rstfromdocx <file:#rstfromdocx>`__\n.. |rstlisttable| replace:: `rstlisttable <file:#rstlisttable>`__\n.. |rstuntable| replace:: `rstuntable <file:#rstuntable>`__\n.. |rstreflow| replace:: `rstreflow <file:#rstreflow>`__\n.. |rstreimg| replace:: `rstreimg <file:#rstreimg>`__\n.. |rstretable| replace:: `rstretable <file:#rstretable>`__\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "rstdoc - support documentation in restructedText (rst)",
    "version": "1.8.2",
    "split_keywords": [
        "documentation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d531a512c59c3976fef42c41d7353d66bc9351187e04911308f57677ce786d8f",
                "md5": "ced3f45aedeb1fcbba6805bb3c156efc",
                "sha256": "6ebdc85d8edfc343d4ef8eac5a5fde6c8703dc988df76a263202e5cf2cd2807c"
            },
            "downloads": -1,
            "filename": "rstdoc-1.8.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ced3f45aedeb1fcbba6805bb3c156efc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 127446,
            "upload_time": "2023-01-22T10:33:51",
            "upload_time_iso_8601": "2023-01-22T10:33:51.331098Z",
            "url": "https://files.pythonhosted.org/packages/d5/31/a512c59c3976fef42c41d7353d66bc9351187e04911308f57677ce786d8f/rstdoc-1.8.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-22 10:33:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "rstdoc",
    "github_project": "rstdoc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "rstdoc"
}
        
Elapsed time: 0.03832s