rst2html5


Namerst2html5 JSON
Version 2.0.1 PyPI version JSON
download
home_pagehttps://foss.heptapod.net/doc-utils/rst2html5
SummaryGenerates (X)HTML5 documents from standalone reStructuredText sources
upload_time2024-01-06 21:53:05
maintainer
docs_urlNone
authorAndré Felipe Dias
requires_python>=3.8,<4.0
licenseMIT
keywords restructuredtext rst html5 doctutils
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            =========
rst2html5
=========

*rst2html5* generates (X)HTML5 documents from standalone reStructuredText sources.
It is a complete rewrite of the docutils' *rst2html* and uses new HTML5 constructs such as
:code:`<section>` and :code:`<aside>`.


Installation
============

.. code-block:: bash

    $ pip install rst2html5


Usage
=====

.. code-block:: bash

	$ rst2html5 [options] SOURCE [DEST]

Options:

--no-indent             Don't indent output
--stylesheet=<URL or path>
                        Specify a stylesheet URL to be included.
                        (This option can be used multiple times)
--stylesheet-inline=<path>
                        Specify a stylesheet file whose contents will be
                        included into the output HTML file. (This option can
                        be used multiple times)
--script=<URL or path>  Specify a script URL to be included.
                        (This option can be used multiple times)
--script-defer=<URL or path>
                        Specify a script URL with a defer attribute
                        to be included in the output HTML file.
                        (This option can be used multiple times)
--script-async=<URL or path>
                        Specify a script URL with a async attribute
                        to be included in the output HTML file.
                        (This option can be used multiple times)
--html-tag-attr=<attribute>
                        Specify a html tag attribute.
                        (This option can be used multiple times)
--template=<filename or text>
                        Specify a filename or text to be used as the HTML5
                        output template. The template must have the {head} and
                        {body} placeholders. The "<html{html_attr}>"
                        placeholder is recommended.
--define=<identifier>   Define a case insensitive identifier to be used with
                        ifdef and ifndef directives. There is no value
                        associated with an identifier. (This option can be
                        used multiple times)


If ``DEST`` is not provided, the output is send to ``stdout``.


Example
-------

Consider a file called ``example.rst`` that contains:

.. code-block:: rst

    Title
    =====

    Some text and a target to `Title 2`_. **strong emphasis**:

    * item 1
    * item 2

    Title 2
    =======

    .. parsed-literal::

        Inline markup is supported, e.g. *emphasis*, **strong**, ``literal
        text``,
        _`hyperlink targets`, and `references <http://www.python.org/>`_


The command to produce an ``example.html`` output file is::

    $ rst2html5 example.rst example.html


The HTML5 produced is clean and tidy:

.. code-block:: html

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8" />
    </head>
    <body>
        <section id="title">
            <h1>Title</h1>
            <p>Some text and a target to <a href="#title-2">Title 2</a>. <strong>strong emphasis</strong>:</p>
            <ul>
                <li>item 1</li>
                <li>item 2</li>
            </ul>
        </section>
        <section id="title-2">
            <h1>Title 2</h1>
            <pre>Inline markup is supported, e.g. <em>emphasis</em>, <strong>strong</strong>, <code>literal
    text</code>,
    <a id="hyperlink-targets">hyperlink targets</a>, and <a href="http://www.python.org/">references</a></pre>
        </section>
    </body>
    </html>


Stylesheets and Scripts
-----------------------

No stylesheets or scripts are spread over the HTML5 by default.
However stylesheets and javascripts URLs or paths can be included through ``stylesheet`` and ``script`` options:

.. parsed-literal::

    $ rst2html5 example.rst \\
    **--stylesheet** https://example.com/css/default.css \\
    **--stylesheet-inline** css/simple.css \\
    **--script** ``https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js``
    **--script-defer** ``js/test1.js``
    **--script-async** ``js/test2.js``


.. code-block:: html

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8" />
        <link rel="stylesheet" href="https://example.com/css/default.css" />
        <style>h1 {font-size: 20em}
    img.icon {
        width: 48px;
        height: 48px;
    }
    h2 {color: red}
    </style>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
        <script src="js/test1.js" defer="defer"></script>
        <script src="js/test2.js" async="async"></script>
    </head>
    ...


HTML tag attributes can be included through ``html-tag-attr`` option:

.. parsed-literal::

    $ rst2html5 **--html-tag-attr** 'lang="pt-BR"' example.rst

.. code-block:: html

    <!DOCTYPE html>
    <html lang="pt-BR">
    ...


Templates
---------

Custom HTML5 template via the :literal:`--template` option. Example:

.. parsed-literal::

    $ template='<!DOCTYPE html>
    <html{html_attr}>
    <head>{head}    <!-- custom links and scripts -->
        <link href="css/default.css" rel="stylesheet" />
        <link href="css/pygments.css" rel="stylesheet" />
        <script src="http\://code.jquery.com/jquery-latest.min.js"></script>
    </head>
    <body>{body}</body>
    </html>'

    $ echo 'one line' > example.rst

    $ rst2html5 **--template "$template"** example.rst


.. code-block:: html

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8" />
        <!-- custom links and scripts -->
        <link href="css/default.css" rel="stylesheet" />
        <link href="css/pygments.css" rel="stylesheet" />
        <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    </head>
    <body>
        <p>one line</p>
    </body>
    </html>


New Directives
==============

``define``, ``undef``, ``ifdef`` and ``ifndef``
-----------------------------------------------

:code:`rst2html5` provides some new directives: ``define``, ``undef``, ``ifdef`` and ``ifndef``,
similar to those used in C++.
They allow to conditionally include (or not) some rst snippets:

.. code-block:: rst

    .. ifdef:: x

        this line will be included if 'x' was previously defined


In case of you check two or more identifiers,
there must be an operator (``[and | or]``) defined:

.. code-block:: rst

    .. ifdef:: x y z
        :operator: or

        This line will be included only if 'x', 'y' or 'z' is defined.


``stylesheet`` and ``script``
-----------------------------

From rst2html5 1.9, you can include stylesheets and scripts via directives inside a reStructuredText text:

.. code-block:: rst

    Just an ordinary paragraph.

    .. stylesheet:: css/default.css
    .. stylesheet:: https://pronus.io/css/standard.css

    .. script:: http://code.jquery.com/jquery-latest.min.js
    .. script:: slide.js
        :defer:

    .. script:: test/animations.js
        :async:

    Another paragraph


.. code-block:: html

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8" />
        <link href="css/default.css" rel="stylesheet" />
        <link href="https://pronus.io/css/standard.css" rel="stylesheet" />
        <script src="http://code.jquery.com/jquery-latest.min.js"></script>
        <script src="slide.js" defer="defer"></script>
        <script src="test/animations.js" async="async"></script>
    </head>
    <body>
        <p>Just an ordinary paragraph.</p>
        <p>Another paragraph</p>
    </body>
    </html>


``template``
------------

There also is a :code:`template` directive. The usage is:

.. code-block:: rst

    .. template:: filename

    or

    .. template::

        template content here.


New Roles
=========

``:abbr:``
----------

From `MDN Web Docs <https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr>`_:

    The HTML Abbreviation element (:code:`<abbr>`) represents an abbreviation or acronym;
    the optional title attribute can provide an expansion or description for the abbreviation.
    If present, title must contain this full description and nothing else.

To create an abbreviation in ``rst2html5`` use the ``:abbr:`` role:

.. code:: rst

    * :abbr:`SPA (Single-Page Application)`
    * :abbr:`ASGI (Asynchronous Server Gateway Interface)` is a spiritual successor to :abbr:`WSGI`
    * :abbr:`WSGI (Web Server Gateway Interface)`


Resulting in:

.. code:: html

    <ul>
        <li>
            <abbr title="Single-Page Application">SPA</abbr>
        </li>
        <li>
            <abbr title="Asynchronous Server Gateway Interface">ASGI</abbr>
        is a spiritual successor to
            <abbr>WSGI</abbr>
        </li>
        <li>
            <abbr title="Web Server Gateway Interface">WSGI</abbr>
        </li>
    </ul>


Note that if the abbreviation follows the pattern ``ABBR (Description for the abbreviation)``,
the description is extracted and becomes the ``title``.


How To Use rst2html5 Programmatically
=====================================

You should use ``rst2html5.HTML5Writer`` with one of the ``publish_*` methods available in ``docutils.core``.
In the case that the input and output will be in memory,
``publish_parts`` is the best fit:

.. code:: python

    from docutils.core import publish_parts

    from rst2html5 import HTML5Writer

    text = r'''The area of a circle is :math:`A_\text{c} = (\pi/4) d^2`.

    .. math::

        \frac{ \sum_{t=0}^{N}f(t,k) }{N}
    '''

    override = {
        'html_tag_attr': ['lang="pt-BR"'],
        'stylesheet': ['https://example.com/css/default.css'],
        'script': [('https://blog.pronus.xyz/test.js', 'async')],
    }
    html = publish_parts(writer=HTML5Writer(), source=text, settings_overrides=override)['whole']
    print(html)


Resulting in:

.. code:: html

    <!DOCTYPE html>
    <html lang="pt-BR">
    <head>
        <meta charset="utf-8" />
        <link rel="stylesheet" href="https://example.com/css/default.css" />
        <script src="https://blog.pronus.xyz/test.js" async="async"></script>
        <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
    </head>
    <body>
        <p>The area of a circle is
            <span class="math">\(A_\text{c} = (\pi/4) d^2\)</span>
        .</p>
        <div class="math">\(\frac{ \sum_{t=0}^{N}f(t,k) }{N}\)</div>
    </body>
    </html>



.. attention::

    Version 2.0 renames the module ``rst2html5_`` back to ``rst2html5``
    since the conflict with docutils installation is solved.
    Importing ``rst2html5_.HTML5Writer`` still works though.
    See the section "**Workaround to Conflicts with Docutils**"
    on ``docs/design_notes.rst`` for more information.


See also: `The Docutils Publisher <https://docutils.sourceforge.io/docs/api/publisher.html>`_


Links
=====

* `Documentation <https://rst2html5.readthedocs.org/>`_
* `Project page at Heptapod <https://foss.heptapod.net/doc-utils/rst2html5>`_

            

Raw data

            {
    "_id": null,
    "home_page": "https://foss.heptapod.net/doc-utils/rst2html5",
    "name": "rst2html5",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "restructuredtext,rst,html5,doctutils",
    "author": "Andr\u00e9 Felipe Dias",
    "author_email": "andref.dias@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/bb/82/a85a9664cced2dce7b9d8895f6cace6c2501072a320342d7edcb6d7ce295/rst2html5-2.0.1.tar.gz",
    "platform": null,
    "description": "=========\nrst2html5\n=========\n\n*rst2html5* generates (X)HTML5 documents from standalone reStructuredText sources.\nIt is a complete rewrite of the docutils' *rst2html* and uses new HTML5 constructs such as\n:code:`<section>` and :code:`<aside>`.\n\n\nInstallation\n============\n\n.. code-block:: bash\n\n    $ pip install rst2html5\n\n\nUsage\n=====\n\n.. code-block:: bash\n\n\t$ rst2html5 [options] SOURCE [DEST]\n\nOptions:\n\n--no-indent             Don't indent output\n--stylesheet=<URL or path>\n                        Specify a stylesheet URL to be included.\n                        (This option can be used multiple times)\n--stylesheet-inline=<path>\n                        Specify a stylesheet file whose contents will be\n                        included into the output HTML file. (This option can\n                        be used multiple times)\n--script=<URL or path>  Specify a script URL to be included.\n                        (This option can be used multiple times)\n--script-defer=<URL or path>\n                        Specify a script URL with a defer attribute\n                        to be included in the output HTML file.\n                        (This option can be used multiple times)\n--script-async=<URL or path>\n                        Specify a script URL with a async attribute\n                        to be included in the output HTML file.\n                        (This option can be used multiple times)\n--html-tag-attr=<attribute>\n                        Specify a html tag attribute.\n                        (This option can be used multiple times)\n--template=<filename or text>\n                        Specify a filename or text to be used as the HTML5\n                        output template. The template must have the {head} and\n                        {body} placeholders. The \"<html{html_attr}>\"\n                        placeholder is recommended.\n--define=<identifier>   Define a case insensitive identifier to be used with\n                        ifdef and ifndef directives. There is no value\n                        associated with an identifier. (This option can be\n                        used multiple times)\n\n\nIf ``DEST`` is not provided, the output is send to ``stdout``.\n\n\nExample\n-------\n\nConsider a file called ``example.rst`` that contains:\n\n.. code-block:: rst\n\n    Title\n    =====\n\n    Some text and a target to `Title 2`_. **strong emphasis**:\n\n    * item 1\n    * item 2\n\n    Title 2\n    =======\n\n    .. parsed-literal::\n\n        Inline markup is supported, e.g. *emphasis*, **strong**, ``literal\n        text``,\n        _`hyperlink targets`, and `references <http://www.python.org/>`_\n\n\nThe command to produce an ``example.html`` output file is::\n\n    $ rst2html5 example.rst example.html\n\n\nThe HTML5 produced is clean and tidy:\n\n.. code-block:: html\n\n    <!DOCTYPE html>\n    <html>\n    <head>\n        <meta charset=\"utf-8\" />\n    </head>\n    <body>\n        <section id=\"title\">\n            <h1>Title</h1>\n            <p>Some text and a target to <a href=\"#title-2\">Title 2</a>. <strong>strong emphasis</strong>:</p>\n            <ul>\n                <li>item 1</li>\n                <li>item 2</li>\n            </ul>\n        </section>\n        <section id=\"title-2\">\n            <h1>Title 2</h1>\n            <pre>Inline markup is supported, e.g. <em>emphasis</em>, <strong>strong</strong>, <code>literal\n    text</code>,\n    <a id=\"hyperlink-targets\">hyperlink targets</a>, and <a href=\"http://www.python.org/\">references</a></pre>\n        </section>\n    </body>\n    </html>\n\n\nStylesheets and Scripts\n-----------------------\n\nNo stylesheets or scripts are spread over the HTML5 by default.\nHowever stylesheets and javascripts URLs or paths can be included through ``stylesheet`` and ``script`` options:\n\n.. parsed-literal::\n\n    $ rst2html5 example.rst \\\\\n    **--stylesheet** https://example.com/css/default.css \\\\\n    **--stylesheet-inline** css/simple.css \\\\\n    **--script** ``https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js``\n    **--script-defer** ``js/test1.js``\n    **--script-async** ``js/test2.js``\n\n\n.. code-block:: html\n\n    <!DOCTYPE html>\n    <html>\n    <head>\n        <meta charset=\"utf-8\" />\n        <link rel=\"stylesheet\" href=\"https://example.com/css/default.css\" />\n        <style>h1 {font-size: 20em}\n    img.icon {\n        width: 48px;\n        height: 48px;\n    }\n    h2 {color: red}\n    </style>\n        <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js\"></script>\n        <script src=\"js/test1.js\" defer=\"defer\"></script>\n        <script src=\"js/test2.js\" async=\"async\"></script>\n    </head>\n    ...\n\n\nHTML tag attributes can be included through ``html-tag-attr`` option:\n\n.. parsed-literal::\n\n    $ rst2html5 **--html-tag-attr** 'lang=\"pt-BR\"' example.rst\n\n.. code-block:: html\n\n    <!DOCTYPE html>\n    <html lang=\"pt-BR\">\n    ...\n\n\nTemplates\n---------\n\nCustom HTML5 template via the :literal:`--template` option. Example:\n\n.. parsed-literal::\n\n    $ template='<!DOCTYPE html>\n    <html{html_attr}>\n    <head>{head}    <!-- custom links and scripts -->\n        <link href=\"css/default.css\" rel=\"stylesheet\" />\n        <link href=\"css/pygments.css\" rel=\"stylesheet\" />\n        <script src=\"http\\://code.jquery.com/jquery-latest.min.js\"></script>\n    </head>\n    <body>{body}</body>\n    </html>'\n\n    $ echo 'one line' > example.rst\n\n    $ rst2html5 **--template \"$template\"** example.rst\n\n\n.. code-block:: html\n\n    <!DOCTYPE html>\n    <html>\n    <head>\n        <meta charset=\"utf-8\" />\n        <!-- custom links and scripts -->\n        <link href=\"css/default.css\" rel=\"stylesheet\" />\n        <link href=\"css/pygments.css\" rel=\"stylesheet\" />\n        <script src=\"http://code.jquery.com/jquery-latest.min.js\"></script>\n    </head>\n    <body>\n        <p>one line</p>\n    </body>\n    </html>\n\n\nNew Directives\n==============\n\n``define``, ``undef``, ``ifdef`` and ``ifndef``\n-----------------------------------------------\n\n:code:`rst2html5` provides some new directives: ``define``, ``undef``, ``ifdef`` and ``ifndef``,\nsimilar to those used in C++.\nThey allow to conditionally include (or not) some rst snippets:\n\n.. code-block:: rst\n\n    .. ifdef:: x\n\n        this line will be included if 'x' was previously defined\n\n\nIn case of you check two or more identifiers,\nthere must be an operator (``[and | or]``) defined:\n\n.. code-block:: rst\n\n    .. ifdef:: x y z\n        :operator: or\n\n        This line will be included only if 'x', 'y' or 'z' is defined.\n\n\n``stylesheet`` and ``script``\n-----------------------------\n\nFrom rst2html5 1.9, you can include stylesheets and scripts via directives inside a reStructuredText text:\n\n.. code-block:: rst\n\n    Just an ordinary paragraph.\n\n    .. stylesheet:: css/default.css\n    .. stylesheet:: https://pronus.io/css/standard.css\n\n    .. script:: http://code.jquery.com/jquery-latest.min.js\n    .. script:: slide.js\n        :defer:\n\n    .. script:: test/animations.js\n        :async:\n\n    Another paragraph\n\n\n.. code-block:: html\n\n    <!DOCTYPE html>\n    <html>\n    <head>\n        <meta charset=\"utf-8\" />\n        <link href=\"css/default.css\" rel=\"stylesheet\" />\n        <link href=\"https://pronus.io/css/standard.css\" rel=\"stylesheet\" />\n        <script src=\"http://code.jquery.com/jquery-latest.min.js\"></script>\n        <script src=\"slide.js\" defer=\"defer\"></script>\n        <script src=\"test/animations.js\" async=\"async\"></script>\n    </head>\n    <body>\n        <p>Just an ordinary paragraph.</p>\n        <p>Another paragraph</p>\n    </body>\n    </html>\n\n\n``template``\n------------\n\nThere also is a :code:`template` directive. The usage is:\n\n.. code-block:: rst\n\n    .. template:: filename\n\n    or\n\n    .. template::\n\n        template content here.\n\n\nNew Roles\n=========\n\n``:abbr:``\n----------\n\nFrom `MDN Web Docs <https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr>`_:\n\n    The HTML Abbreviation element (:code:`<abbr>`) represents an abbreviation or acronym;\n    the optional title attribute can provide an expansion or description for the abbreviation.\n    If present, title must contain this full description and nothing else.\n\nTo create an abbreviation in ``rst2html5`` use the ``:abbr:`` role:\n\n.. code:: rst\n\n    * :abbr:`SPA (Single-Page Application)`\n    * :abbr:`ASGI (Asynchronous Server Gateway Interface)` is a spiritual successor to :abbr:`WSGI`\n    * :abbr:`WSGI (Web Server Gateway Interface)`\n\n\nResulting in:\n\n.. code:: html\n\n    <ul>\n        <li>\n            <abbr title=\"Single-Page Application\">SPA</abbr>\n        </li>\n        <li>\n            <abbr title=\"Asynchronous Server Gateway Interface\">ASGI</abbr>\n        is a spiritual successor to\n            <abbr>WSGI</abbr>\n        </li>\n        <li>\n            <abbr title=\"Web Server Gateway Interface\">WSGI</abbr>\n        </li>\n    </ul>\n\n\nNote that if the abbreviation follows the pattern ``ABBR (Description for the abbreviation)``,\nthe description is extracted and becomes the ``title``.\n\n\nHow To Use rst2html5 Programmatically\n=====================================\n\nYou should use ``rst2html5.HTML5Writer`` with one of the ``publish_*` methods available in ``docutils.core``.\nIn the case that the input and output will be in memory,\n``publish_parts`` is the best fit:\n\n.. code:: python\n\n    from docutils.core import publish_parts\n\n    from rst2html5 import HTML5Writer\n\n    text = r'''The area of a circle is :math:`A_\\text{c} = (\\pi/4) d^2`.\n\n    .. math::\n\n        \\frac{ \\sum_{t=0}^{N}f(t,k) }{N}\n    '''\n\n    override = {\n        'html_tag_attr': ['lang=\"pt-BR\"'],\n        'stylesheet': ['https://example.com/css/default.css'],\n        'script': [('https://blog.pronus.xyz/test.js', 'async')],\n    }\n    html = publish_parts(writer=HTML5Writer(), source=text, settings_overrides=override)['whole']\n    print(html)\n\n\nResulting in:\n\n.. code:: html\n\n    <!DOCTYPE html>\n    <html lang=\"pt-BR\">\n    <head>\n        <meta charset=\"utf-8\" />\n        <link rel=\"stylesheet\" href=\"https://example.com/css/default.css\" />\n        <script src=\"https://blog.pronus.xyz/test.js\" async=\"async\"></script>\n        <script src=\"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\"></script>\n    </head>\n    <body>\n        <p>The area of a circle is\n            <span class=\"math\">\\(A_\\text{c} = (\\pi/4) d^2\\)</span>\n        .</p>\n        <div class=\"math\">\\(\\frac{ \\sum_{t=0}^{N}f(t,k) }{N}\\)</div>\n    </body>\n    </html>\n\n\n\n.. attention::\n\n    Version 2.0 renames the module ``rst2html5_`` back to ``rst2html5``\n    since the conflict with docutils installation is solved.\n    Importing ``rst2html5_.HTML5Writer`` still works though.\n    See the section \"**Workaround to Conflicts with Docutils**\"\n    on ``docs/design_notes.rst`` for more information.\n\n\nSee also: `The Docutils Publisher <https://docutils.sourceforge.io/docs/api/publisher.html>`_\n\n\nLinks\n=====\n\n* `Documentation <https://rst2html5.readthedocs.org/>`_\n* `Project page at Heptapod <https://foss.heptapod.net/doc-utils/rst2html5>`_\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Generates (X)HTML5 documents from standalone reStructuredText sources",
    "version": "2.0.1",
    "project_urls": {
        "Documentation": "https://rst2html5.readthedocs.io/en/latest/",
        "Homepage": "https://foss.heptapod.net/doc-utils/rst2html5"
    },
    "split_keywords": [
        "restructuredtext",
        "rst",
        "html5",
        "doctutils"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6811af7dbae566c6601595be0ccfad50d397a94b491532d6d2abf0aff5b852b4",
                "md5": "4496d1e8baed297224e2bd7747d9d400",
                "sha256": "755f97255475ffc3f81e87ebe4bc1a182ffd52b753897045098e997e455651cd"
            },
            "downloads": -1,
            "filename": "rst2html5-2.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4496d1e8baed297224e2bd7747d9d400",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 20200,
            "upload_time": "2024-01-06T21:53:03",
            "upload_time_iso_8601": "2024-01-06T21:53:03.577423Z",
            "url": "https://files.pythonhosted.org/packages/68/11/af7dbae566c6601595be0ccfad50d397a94b491532d6d2abf0aff5b852b4/rst2html5-2.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb82a85a9664cced2dce7b9d8895f6cace6c2501072a320342d7edcb6d7ce295",
                "md5": "ec24085384216bbc76c120054ca75049",
                "sha256": "309998c85fab028f2fcb01a2ccdc886db0afc4398262e795a02ea9c4d0f32ae9"
            },
            "downloads": -1,
            "filename": "rst2html5-2.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ec24085384216bbc76c120054ca75049",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 21894,
            "upload_time": "2024-01-06T21:53:05",
            "upload_time_iso_8601": "2024-01-06T21:53:05.874096Z",
            "url": "https://files.pythonhosted.org/packages/bb/82/a85a9664cced2dce7b9d8895f6cace6c2501072a320342d7edcb6d7ce295/rst2html5-2.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-06 21:53:05",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "rst2html5"
}
        
Elapsed time: 0.15781s