https://github.com/sinoroc/rst2sh5
Docutils writer outputting semantic HTML5
https://github.com/sinoroc/rst2sh5
docutils html5 restructuredtext semantic-html
Last synced: 8 months ago
JSON representation
Docutils writer outputting semantic HTML5
- Host: GitHub
- URL: https://github.com/sinoroc/rst2sh5
- Owner: sinoroc
- License: apache-2.0
- Created: 2018-02-05T21:24:45.000Z (over 8 years ago)
- Default Branch: develop-0.0.x
- Last Pushed: 2021-06-27T17:08:40.000Z (almost 5 years ago)
- Last Synced: 2025-09-25T02:46:56.171Z (8 months ago)
- Topics: docutils, html5, restructuredtext, semantic-html
- Language: Python
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
..
.. contents::
.. sectnum::
Hacking
=======
This project makes extensive use of `tox`_, `pytest`_, and `GNU Make`_.
Development environment
-----------------------
Use following command to create a Python virtual environment with all
necessary dependencies::
tox --recreate -e develop
This creates a Python virtual environment in the ``.tox/develop`` directory. It
can be activated with the following command::
. .tox/develop/bin/activate
Run test suite
--------------
In a Python virtual environment run the following command::
make review
Outside of a Python virtual environment run the following command::
tox --recreate
Build and package
-----------------
In a Python virtual environment run the following command::
make package
Outside of a Python virtual environment run the following command::
tox --recreate -e package
.. Links
.. _`GNU Make`: https://www.gnu.org/software/make/
.. _`pytest`: http://pytest.org/
.. _`tox`: https://tox.readthedocs.io/
.. EOF