#Using namespace without showing *Namespace:* in the title
7 messages · Page 1 of 1 (latest)
There may be a better way, but you could use {{DISPLAYTITLE:}} to make it show a different title
you can use displaytitle for individual articles but if it's about the entire namespace why not just have them in the main namespace?
ofc I got nerdsniped

The goal is to categorize our articles. More precisely, our wiki is about conlangs (constructed languages), and we have wiktionnary-like articles avout a word and its signification in the conlangs (picture 1), and we have wikipedia-like articles about each language, about specific aspect of a language, or about worldbuilding (picture 2). So we wanted to separate the two types of articles with a namespace for the second type
hmm you could use CSS to hide the namespace part e.g. ```css
body.ns-2 #firstHeading :is(.mw-page-title-namespace, .mw-page-title-separator) {
display: none;
}