John wrote:
{{DISPLAYTITLE:NEWNAME}}
Is there any way to automate this in a template?
My titles are in the form
DisplayTitle;HiddenSuffix
so I could manually edit each and every page to add
{{DisplayTitle;HiddenSuffix:DisplayTitle}}
but I'd really like to find a way to drop the part after the semicolon in a template; in regex:
s/;.*$//
or in php (pseudocode, not mediawiki code)
preg_replace(';.*$', '', $DISPLAYTITLE);
Can this be done?