diff --git a/docs/changelog.md b/docs/changelog.md index ad0aa04c..86b3b5fd 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -8,6 +8,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). See the [Contributing Guide](contributing.md) for details. +## [unreleased] + +### Fixed + +* Fixed links to source code on GitHub from the documentation (#1453). + ## [3.6] -- 2024-03-14 ### Changed diff --git a/docs/templates/python/nature/attribute.html b/docs/templates/python/nature/attribute.html index 8df5453f..906d292b 100644 --- a/docs/templates/python/nature/attribute.html +++ b/docs/templates/python/nature/attribute.html @@ -1,7 +1,7 @@ {% extends "_base/attribute.html" %} {% block heading scoped %} - ‹› + ‹› {% if config.show_symbol_type_heading %}{% endif %} {%+ filter highlight(language="python", inline=True) %} {{ attribute_name }}{% if attribute.annotation %}: {{ attribute.annotation }}{% endif %} diff --git a/docs/templates/python/nature/class.html b/docs/templates/python/nature/class.html index 7193c341..dc8b5851 100644 --- a/docs/templates/python/nature/class.html +++ b/docs/templates/python/nature/class.html @@ -1,6 +1,6 @@ {% extends "_base/class.html" %} {% block heading scoped %} - ‹› + ‹› {{ super() }} {% endblock heading %} diff --git a/docs/templates/python/nature/function.html b/docs/templates/python/nature/function.html index 82a696a3..9703647e 100644 --- a/docs/templates/python/nature/function.html +++ b/docs/templates/python/nature/function.html @@ -1,6 +1,6 @@ {% extends "_base/function.html" %} {% block heading scoped %} - ‹› + ‹› {{ super() }} {% endblock heading %} diff --git a/docs/templates/python/nature/module.html b/docs/templates/python/nature/module.html index 4d758a38..0b9b9f09 100644 --- a/docs/templates/python/nature/module.html +++ b/docs/templates/python/nature/module.html @@ -1,6 +1,6 @@ {% extends "_base/module.html" %} {% block heading scoped %} - ‹› + ‹› {{ super() }} {% endblock heading %}