show file annotations only

This commit is contained in:
ghost 2024-02-01 13:32:47 +02:00
parent 65e722d78a
commit b41adca9ff

View File

@ -126,9 +126,10 @@ class Reader
// Prepend tag meta or filename as plain description
if (!empty($matches[0]))
{
$lines[] = trim(
$matches[0],
'<>'
$lines[] = preg_replace(
'/^<.*\s(.+)>$/',
'$1',
$matches[0]
);
}