sphinx-issues icon indicating copy to clipboard operation
sphinx-issues copied to clipboard

A Sphinx extension for linking to your project's issue tracker

Results 5 sphinx-issues issues
Sort by recently updated
recently updated
newest added

updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.4.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.3...v0.4.4) - [github.com/python-jsonschema/check-jsonschema: 0.28.2 → 0.28.3](https://github.com/python-jsonschema/check-jsonschema/compare/0.28.2...0.28.3)

GitHub is adding the ability to handle security reports and fixes privately in their UI. Instead of creating an issue, the reporter creates a security advisory, and then GitHub allows...

enhancement
help wanted

For instance if the following is in `conf.py`: ``` issues_uri = "https://gitlab.com/graphviz/graphviz/issues/{issue}" issues_pr_uri = "https://gitlab.com/graphviz/graphviz/merge_requests/{pr}" issues_commit_uri = "https://gitlab.com/graphviz/graphviz/commit/{commit}" ``` Then writing `.rst`: ``` :issue:`fdroid/fdroidserver#1` ``` Points to Github at https://github.com/fdroid/fdroidserver/issues/1...

# Simple working case Here is a couple of `sphinx-issues` roles in rST: ```rst :issue:`17` :commit:`170ce9` ``` This works great and is rendered as such in HTML: ```html #17 170ce9...