I have a named link within my document. I want to allow line breaks of the text at an arbitrary position, preferred at some common know position but if it won't work out than at any kind of position.
While for the \url command there are some packages out (e.g. xurl) I haven't found a solution when using \hyperlink.
\documentclass[a4paper,11pt,british]{article}
\usepackage[margin=2.5cm, showframe]{geometry}
\usepackage[tracking=true,factor=1100,stretch=10,shrink=10,final]{microtype}
\usepackage{fontspec}
\directlua{luaotfload.add_fallback("fntFallback",{
"DejaVu Sans:mode=harf",
"NotoColorEmoji:mode=harf"})}
\setmainfont{Liberation Sans}
\usepackage{hyphenat}
\usepackage{xurl}
\urlstyle{same}
\usepackage[pdfa, unicode, breaklinks]{hyperref}
\begin{document}
The labour participation rate in my own country is estimated to be 99.9\% in 2019 (%
\hyperlink{abc}{ILO/CSO/KRSO 2020})\newline
The labour participation rate in my own country is estimated to be 99.9\% in 2019 (%
\url{ILO/CSO/KRSO 2020})\newline
\hypertarget{abc}{sample anchor text}
\end{document}
I'm using lualatex 1.17.0 with hyperref 2023-02-07 v7.00v.

{ILO/CSO/KR\hspace{0pt}SO 2020}. – Ulrike Fischer Jan 16 '24 at 18:30