Numbered headers, anyone?
Added by Boaz Rymland over 10 years ago
Replies (7)
RE: Numbered headers, anyone? - Added by Martin Denizet (redmine.org team member) over 10 years ago
Hello Boaz ,
Try:
h1. # Master heading
Note that there is a space after the h1.
Cheers,
RE: Numbered headers, anyone? - Added by Boaz Rymland over 10 years ago
Thanks, but its not working. I've tried:
Welcome to Wiki! h1. # Master heading h2. ## Sub heading h2. ## Another heading h1. # Next first level h2. # Confusing numbering symbol
and its being rendered as shown in the image below:
headers.png (14.2 KB) headers.png |
RE: Numbered headers, anyone? - Added by Leandro Guida about 10 years ago
Is there a way of doing this? It would be very useful!
Right now all my Wikis are numbered by hand =/
RE: Numbered headers, anyone? - Added by Adnan Topçu about 9 years ago
RE: Numbered headers, anyone? - Added by Guillaume Storchi over 7 years ago
/*Numering header in wiki*/
div.wiki, div.wiki-page {
counter-reset:h1s;
}
.wiki h1 {
counter-reset: h2s;
}
.wiki h1::before {
content: counter(h1s) ". ";
counter-increment: h1s;
}
.wiki h2 {
counter-reset: h3s;
}
.wiki h2::before {
content: counter(h1s) "." counter(h2s) ". ";
counter-increment: h2s;
}
.wiki h3 {
counter-reset: h4s;
}
.wiki h3::before {
content: counter(h1s) "." counter(h2s) "." counter(h3s) ". ";
counter-increment: h3s;
}
.wiki h4 {
counter-reset: h5s;
}
.wiki h4::before {
content: counter(h1s) "." counter(h2s) "." counter(h3s) "." counter(h4s);
counter-increment: h4s;
}
.wiki h5 {
}
.wiki h5::before {
content: counter(h1s) "." counter(h2s) "." counter(h3s) "." counter(h4s) "." counter(h5s);
counter-increment: h5s;
}
RE: Numbered headers, anyone? - Added by Hans Kaiser about 4 years ago
for me it was not fully clear what is needed to do here. Found this Redmine Wiki numbered headings post, which helped me to understand how to solve it. Hope it helps others too