diff --git a/CHANGELOG.md b/CHANGELOG.md index c2ac047f8a..2758d5b977 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Allow for discussions on Topics [#2922](https://github.com/opendatateam/udata/pull/2922) - Support skos.Concept themes for tags [#2926](https://github.com/opendatateam/udata/pull/2926) - Raise for status on DCAT harvester calls [#2927](https://github.com/opendatateam/udata/pull/2927) +- Allow for id attribute in a tags in markdown [#2929](https://github.com/opendatateam/udata/pull/2929) ## 6.2.0 (2023-10-26) diff --git a/udata/settings.py b/udata/settings.py index 194a841b8c..0dd6e4ef31 100644 --- a/udata/settings.py +++ b/udata/settings.py @@ -199,7 +199,7 @@ class Defaults(object): ] MD_ALLOWED_ATTRIBUTES = { - 'a': ['href', 'title', 'rel', 'data-tooltip'], + 'a': ['href', 'title', 'rel', 'data-tooltip', 'id'], 'abbr': ['title'], 'acronym': ['title'], 'img': ['alt', 'src', 'title']