As of now, this document is rather maintainer notes.
Tests are implemented as doctests. Run
$ python markdown_del_ins.py
With every push, the code is tested by GitHub Actions.
To publish the library,
- update the version number in
setup.py, - commit the version change by
git commit -am "vX.Y.Z" - add a release tag by
git tag vX.Y.Z - push everything to GitHub by
git push origin master --tags - see if GitHub Actions pass and correctly publish a new version to the PyPI
Done!