diff --git a/mwparserfromhell/wikicode.py b/mwparserfromhell/wikicode.py index 4f5cd1a..44515a6 100644 --- a/mwparserfromhell/wikicode.py +++ b/mwparserfromhell/wikicode.py @@ -527,11 +527,11 @@ class Wikicode(StringMixIn): """Return a rendered string without unprintable code such as templates. The way a node is stripped is handled by the - :py:meth:`~.Node.__showtree__` method of :py:class:`~.Node` objects, - which generally return a subset of their nodes or ``None``. For - example, templates and tags are removed completely, links are stripped - to just their display part, headings are stripped to just their title. - If *normalize* is ``True``, various things may be done to strip code + :py:meth:`~.Node.__strip__` method of :py:class:`~.Node` objects, which + generally return a subset of their nodes or ``None``. For example, + templates and tags are removed completely, links are stripped to just + their display part, headings are stripped to just their title. If + *normalize* is ``True``, various things may be done to strip code further, such as converting HTML entities like ``Σ``, ``Σ``, and ``Σ`` to ``Σ``. If *collapse* is ``True``, we will try to remove excess whitespace as well (three or more newlines are converted