From d1c4bd050c8e7747d1344ecf54e89963c6d8b1cd Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 2 Jan 2026 16:52:38 +0100 Subject: [PATCH] #7866 --- src/Links/Link.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Links/Link.php b/src/Links/Link.php index cd91044..470cd9d 100644 --- a/src/Links/Link.php +++ b/src/Links/Link.php @@ -711,6 +711,10 @@ class Link $addContent .= ' data-visibility-os="' . $this->visibility_os . '"'; } + if ($this->accessibility) { + $addContent .= ' data-accessible-content="1"'; + } + $attached = $this->attached ? ' data-attached="' . $this->attached . '" ' : ''; return '
' . $this->getHTMLContent() . '
'; } -- 2.39.5