You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If hide_title is set to true, hide the title, declared through the front matter, at the top of the doc. This should not affect the title already exists at the top of the doc
Examples
If the content of example-lyrics.md is:
---
title: Never Gonna Give You Up
hide_title: true
---
We're no strangers to love
You know the rules and so do I
The title should not be added as a <h1> element to the <body> of the generated HTML file:
<html><head>
...
<title>Never Gonna Give You Up</title></head><body><p>We're no strangers to love</p><p>You know the rules and so do I</p></body></html>
The text was updated successfully, but these errors were encountered:
Requirements
hide_title
is set totrue
, hide the title, declared through the front matter, at the top of the doc. This should not affect the title already exists at the top of the docExamples
If the content of
example-lyrics.md
is:The title should not be added as a
<h1>
element to the<body>
of the generated HTML file:The text was updated successfully, but these errors were encountered: