From: Vincent Vanwaelscappel Date: Fri, 2 Jan 2026 15:52:38 +0000 (+0100) Subject: #7866 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=d1c4bd050c8e7747d1344ecf54e89963c6d8b1cd;p=fluidbook_tools.git #7866 --- 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() . '
'; }