Added possibility to use notes without issue

This commit is contained in:
Alex Root Junior 2021-08-01 19:56:01 +03:00
parent 9114abe919
commit f4ca858571
2 changed files with 3 additions and 2 deletions

View file

@ -22,7 +22,8 @@
{% if definitions[category]['showcontent'] %}
{% for text, values in sections[section][category].items() %}
- {{ text }}
{{ values|join(', ') }}
{% for value in values %}{% if value.isdigit() %} `#{{ value }} <https://github.com/aiogram/aiogram/issues/{{ value }}>`_
{% endif %}{% endfor %}
{% endfor %}
{% else %}

View file

@ -137,7 +137,7 @@ package = "aiogram"
filename = "CHANGES.rst"
directory = "CHANGES/"
template = "CHANGES/.template.rst.jinja2"
issue_format = "`#{issue} <https://github.com/aiogram/aiogram/issues/{issue}>`_"
issue_format = "{issue}"
[build-system]
requires = ["poetry-core>=1.0.0"]