当我尝试使用以下方法解析针页时
$parser = new Parser();
$parserOptions = new ParserOptions();
$parserOptions->setEditSection(false);
$title = Title::newFromText('Title');
$article = WikiPage::factory($title);
$bodyText = $parser->parse($article->getText(), $title, $parserOptions)->mText;
我收到带有mw:editsection
块的已解析文章。如何隐藏它?
答案 0 :(得分:0)
使用getText()
代替mText
以html格式返回文本而不使用mw:editsection
。
例如:$bodyText = $parser->parse($article->getText(), $title, $parserOptions)->getText();