I want to add slide numbers to my GitPitch presentation.
I have:
PITCHME.md
with contentPITCHME.yaml
with path to css
theme-override : {path}/assets/css/PITCHME.css
PITCHME.css
with some customization
.reveal .slides {
text-align: left;
}
...
.reveal .slide-number {
font-size: 24pt;
color: #ffffff;
}
I tried:
I found that there is .reveal .slide-number
and added it to my css.
It doesn't work out of box.
Finally my question is:
How can I use .reveal .slide-number
in markdown #(H)SLIDE? Or may be there is an easier way to add slide numbers?
GitPitch developers answer:
Just add the following entry to your PITCHME.yaml
file:
slide-number: true
It works in my cases.