fix: properly wrap text in paragraph if it is a wikitext link

Seems to be related to #151
This commit is contained in:
alistair3149 2024-11-19 14:35:14 -05:00
parent 5b5b97c5f7
commit dc1d16c276
No known key found for this signature in database

View file

@ -165,11 +165,11 @@ class Tabber {
}
if ( !self::$useCodex ) {
$wikitextListMarkers = [ '*', '#', ';', ':' ];
$isWikitextList = in_array( substr( $content, 0, 1 ), $wikitextListMarkers );
if ( $isWikitextList ) {
// Fix #151, some wikitext magic
// Insert a new line for these characters in wikitext (#151)
// Seems like there is no way to get rid of the mw-empty-elt paragraphs sadly
$wikitextCharacters = [ '*', '#', ';', ':', '[' ];
$needsNewLine = in_array( substr( $content, 0, 1 ), $wikitextCharacters );
if ( $needsNewLine ) {
$content = "\n$content\n";
}
return $parser->recursiveTagParse( $content, $frame );