Reputation: 7812
When you create a page in MediaWiki/Wikipedia, the title is sanitized and used as part of the URL path. E.g. 'Lorem Ipsum' becomes 'Lorem_Ipsum'.
Do you known which regex is used for the sanitization? I can see it accepts also extended characters (like ü).
Upvotes: 0
Views: 100
Reputation: 8520
It depends a bit on the settings of your wiki, but basically:
There are a few restrictions as well, e.g. titles cannot begin with a colon. See https://www.mediawiki.org/wiki/Manual:Page_title for the full list.
Upvotes: 1