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

fixed raw html

parent dd265458
No related branches found
No related tags found
No related merge requests found
Pipeline #314827 passed
...@@ -188,9 +188,9 @@ ...@@ -188,9 +188,9 @@
{%- set format = block['format'] -%} {%- set format = block['format'] -%}
{%- set raw = block['raw'] -%} {%- set raw = block['raw'] -%}
{%- if format == "html" -%} {%- if format == "html" -%}
<div class="rawblock {{ format|e }}"> {#- <div class="rawblock {{ format|e }}"> -#}
{{ raw }} {{ raw }}
</div> {#- </div> -#}
{%- else -%} {%- else -%}
<div class="rawblock {{ format|e }}">{{ raw | e }}</div> <div class="rawblock {{ format|e }}">{{ raw | e }}</div>
{%- endif -%} {%- endif -%}
...@@ -309,9 +309,9 @@ ...@@ -309,9 +309,9 @@
{%- set format = inline['format'] -%} {%- set format = inline['format'] -%}
{%- set raw = inline['raw'] -%} {%- set raw = inline['raw'] -%}
{%- if format == "html" -%} {%- if format == "html" -%}
<span class="rawinline {{ format|e }}"> {#- <span class="rawinline {{ format|e }}"> -#}
{{ raw }} {{ raw }}
</span> {#- </span> -#}
{%- else -%} {%- else -%}
<span class="rawinline {{ format|e }}">{{ raw | e }}</span> <span class="rawinline {{ format|e }}">{{ raw | e }}</span>
{%- endif -%} {%- endif -%}
......
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