[SOLVED] Using HTML for content pages instead of Markdown

First of all. Read the Forum rules on Sharing Code in the forum.

I had to edit every single post you made because you do not use the code block button </> properly.

Second a repo is short for repository.

Third you need to read the Docs. Read the Quick Start tutorial.

You do not need to set you theme in the layout parameter. You need to delete the following line:

layout = “hyde-master”

Also delete the above. You do NOT need to declare DOCTYPE again or open the html and body tags. These should be set by the templates of the theme you use.

Once again. You only type the HTML you need on that page directly below the front matter like so:

 +++
 <h1>
Welcome
</h1>
<p>
	test html content
	</p>

And one last thing read about HTML tags.

The syntax is like this <h1></h1> not <h1 </h1

1 Like