I have created a github page and have chosen one of proposed Jekyll themes called minima
. To add a post I have created a file called 2018-11-16-My-first-post-on-github.md
. However, the post title displayed is a text converted to title case: My First Post On Github
, so every first letter in each word is made upper case. How can I prevent that? Is this theme-dependent?
How to prevent my github page from making post title 'title-cased'
385 Views Asked by jakes At
2
There are 2 best solutions below
0

Jekyll automatically converts your post title to uppercase upon import. You can fix this by using a plugin, or by using a YAML file or Front matter to specify your title value directly.