Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions mwparserfromhell/nodes/wikilink.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,25 @@
class Wikilink(Node):
"""Represents an internal wikilink, like ``[[Foo|Bar]]``."""

# a list of links to strip:
strip_links = ['File', 'Image', 'Media', # English
'Файл', 'Изображение', # Russian
'Detei', # German
'Fichier', # French
'Archivo', # Spanish
'Immagine', # Italiano
'Imagem', # Portuguese
'Plik', # Polish
'Berkas', # Indonesian
'Bestand', # Netherlands
'चित्र', # Hindi
'Payl', # Cebuano
'Paypay', # Waray
'Tập_tin', # Vietnamese
'ファイル', # Japanese
# -- add here other start words of image wikilinks --
]

def __init__(self, title, text=None):
super(Wikilink, self).__init__()
self._title = title
Expand All @@ -47,6 +66,10 @@ def __children__(self):
yield self.text

def __strip__(self, **kwargs):
_title = self.title.lstrip(':')
for word in self.strip_links:
if _title.startswith(word):
return ''
if self.text is not None:
return self.text.strip_code(**kwargs)
return self.title.strip_code(**kwargs)
Expand Down