Skip to content
Snippets Groups Projects
Verified Commit cd940158 authored by Jake's avatar Jake
Browse files

removed weird tabs on pages

parent 5139ec5c
No related branches found
No related tags found
No related merge requests found
......@@ -135,17 +135,13 @@
{%- set attr = block['attr'] -%}
{%- set content = block['content'] -%}
<header {{ render_attr(attr, lang) }}>
<h{{ level }}>
{{ render_inlines(content, lang) }}
</h{{ level }}>
<h{{ level }}>{{ render_inlines(content, lang) }}</h{{ level }}>
</header>
{%- endmacro -%}
{%- macro render_block_paragraph(block, lang) -%}
{%- set content = block['content'] -%}
<p>
{{ render_inlines(content, lang) }}
</p>
<p>{{ render_inlines(content, lang) }}</p>
{%- endmacro -%}
{%- macro render_block_bulletlist(block, lang) -%}
......@@ -394,9 +390,7 @@
{%- macro render_inline_inlinecontainer(inline, lang) -%}
{%- set attr = inline['attr'] -%}
{%- set content = inline['content'] -%}
<span {{ render_attr(attr, lang) }}>
{{ render_inlines(content, lang) }}
</span>
<span {{ render_attr(attr, lang) }}>{{ render_inlines(content, lang) }}</span>
{%- endmacro -%}
{%- macro render_inline_rawinline(inline, lang) -%}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment