Blackfriday automatically wraps Markdown `Content` text in `<p>` tags. No need to wrap in additional `<p>` tags (which is also invalid HTML). See #1197
@@ -8,7 +8,7 @@
{{ with $page.Params.subtitle }}<p>{{ . | markdownify }}</p>{{ end }}
</div>
<div class="col-12 col-lg-8">
- {{ with $page.Content }}<p>{{ . | markdownify }}</p>{{ end }}
+ {{ with $page.Content }}{{ . }}{{ end }}
{{ if $page.Params.item }}
{{ range $idx, $key := sort $page.Params.item ".date_start" "desc" }}
@@ -9,7 +9,7 @@
{{ if $page.Params.email_form }}
{{ if $page.Params.experience }}
{{ $exp_len := len $page.Params.experience }}
@@ -38,7 +38,7 @@
- {{ with $st.Content }}<p>{{ . }}</p>{{ end }}
+ {{ with $st.Content }}{{ . }}{{ end }}
{{ range $post := $query }}
{{ if eq $st.Params.design.view 1 }}
@@ -11,7 +11,7 @@
{{ with $page.Content }}
<div class="col-md-12">
- <p>{{ . | markdownify }}</p>
+ {{ . }}
{{ end }}
@@ -72,7 +72,7 @@
- <p>{{ . }}</p>
@@ -30,7 +30,7 @@
<div>
{{ if $st.Params.content.filter_button }}
@@ -7,7 +7,7 @@
{{ with $page.Params.subtitle }}<p>{{ . | markdownify | emojify }}</p>{{ end }}
- {{ with $page.Content }}<p>{{ . }}</p>{{ end }}
{{ if not (eq (len site.Taxonomies.tags) 0) }}
{{ $fontSmall := 0.8 }}