Is there a way with the forest package to anchor the edge to the first line of a multi-line node?
In this example, I would like to have the middle horizontal edge point to the 123 of the multiline text node.
\documentclass[a4paper]{article}
\usepackage{geometry}% geometry or similar is needed for correct A4 layout
\usepackage[edges]{forest}
\begin{document}
\begin{forest}
for tree={
folder,
grow'=0,
align=left
},
[ Top level
[ \textbf{ABC} ]
[ \textbf{123} Also some longer text.\Also some longer text. Also some longer text. Also some longer text. Also some longer text.\Also some longer text. Also some longer text. Also some longer text. Also some longer text.\Also some longer text. Also some longer text.]
[ \textbf{ZYX} ]
]
\end{forest}
\end{document}


\forestsetaslong description/.style={edge path'..., base=top}. Maybe this could be added to the package as a default style? – quazgar Oct 30 '20 at 09:02folder(see e.g. my recent answers to https://tex.stackexchange.com/q/567434/16819) and to deal with (forest's) anchors in general (like the ability to shift them). – Sašo Živanović Oct 30 '20 at 10:07