Browse Source

show file annotations only

main
ghost 10 months ago
parent
commit
b41adca9ff
  1. 7
      src/Dokuwiki/Reader.php

7
src/Dokuwiki/Reader.php

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

Loading…
Cancel
Save