Koha Test Wiki MW Canasta on Koha Portainer
Test major Koha Wiki changes or bug fixes here without fear of breaking the production wiki.
For the current Koha Wiki, visit https://wiki.koha-community.org .Template:KillMarkers/doc
Jump to navigation
Jump to search
![]() | This is a documentation subpage for Template:KillMarkers. It contains usage information, categories and other content that is not part of the original template page. |
![]() | This template uses Lua: |
Usage
Implements mw.text.killmarkers( s )
: remove references and other parser tags from the input string s
.
- mw:Extension:Scribunto/Lua_reference_manual#mw.text.killMarkers
- See parser tags description mw:Strip_marker.
Note: removing a <ref> tag may cause "ghost" references (not in text, but appearing in reference section). See "with" example below.
Example
Without:
Hello world.<ref>{{cite web|url=https://www.example.com/|title=Example reference A}}</ref>
- → Hello world.[1]
With:
{{KillMarkers|Hello world.<ref>{{cite web|url=https://www.example.com/|title=Example reference B}}</ref>}}
- → Hello world.
Ghost reference created:
{{KillMarkers|Hello world.<ref>(Ghost reference) {{cite web|url=https://www.example.com/|title=Example reference C}}</ref>}}
- → Hello world.
References
- ↑ "Example reference A".
- ↑ "Example reference B".
- ↑ (Ghost reference) "Example reference C".