Markdown not showing up properly

Hello My Markdown is successfully compiled to html tag

# title 

-> 

<h1>title</h1>

But the h1 tag is not correctly displayed with Bulma css, since it doesn’t has the class attribute.

Maybe I am missing something critical, or doing something stupid. Please help!
Thanks,

I figured it out. I need to wrap the generated html with content. For example:

<div class="content">

<p>{{ page.content | safe }}</p>

</div>
1 Like