Reveal.js: Lowercase in headings, titles ?

Created on 7 Sep 2018  路  2Comments  路  Source: hakimel/reveal.js

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.

Most helpful comment

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.

All 2 comments

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>

Was this page helpful?
0 / 5 - 0 ratings

Related issues

togakangaroo picture togakangaroo  路  4Comments

MurhafSousli picture MurhafSousli  路  5Comments

gre picture gre  路  5Comments

AnnotatedJS picture AnnotatedJS  路  5Comments

ablakey picture ablakey  路  3Comments