By default reveal.js will put html headings and markdown headers in uppercase.
It would be nice to have simple a way to disable this behaviour!
I'm a bit puzzled I've read: https://github.com/hakimel/reveal.js/issues/1970 and https://github.com/hakimel/reveal.js/pull/1978 and I didn't find how to put titles in lowercase.
A quick workaround is to put
<style>
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5 {
text-transform: none;
}
</style>
in the <head> of the html file.
That issue you mention #1978 & #1970, related to cod tags, not for h tags. You can easily replace your h tags by code tags, like:<code> Your headline content </code>
Most helpful comment
A quick workaround is to put
in the
<head>of the html file.