From 1b5731053584602fdb4e3e23e4e0b90880861aae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ars=C3=A8ne=20Reymond?= <66876397+p0lycarpio@users.noreply.github.com> Date: Fri, 2 Jan 2026 20:02:11 +0100 Subject: [PATCH] fix: allow `start` attribute on ordered lists (SafeMarkdown) (#6820) Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> --- frontend/components/global/SafeMarkdown.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/global/SafeMarkdown.vue b/frontend/components/global/SafeMarkdown.vue index 0d9f57a68..a48bb92c5 100644 --- a/frontend/components/global/SafeMarkdown.vue +++ b/frontend/components/global/SafeMarkdown.vue @@ -31,7 +31,7 @@ export default defineNuxtComponent({ ], ALLOWED_ATTR: [ "href", "src", "alt", "height", "width", "class", "allow", "title", "allowfullscreen", "frameborder", - "scrolling", "cite", "datetime", "name", "abbr", "target", "border", + "scrolling", "cite", "datetime", "name", "abbr", "target", "border", "start", ], });