File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ layout: null
17
17
{%- assign posts = site.posts | where_exp: "post", "post.draft != true" -%}
18
18
{%- for post in posts limit: 10 -%}
19
19
<entry xml : lang =" en" >
20
- <title type =" text " >{{ post.title | smartify | strip_html | normalize_whitespace | xml_escape }}</title >
20
+ <title type =" html " >{{ post.title | smartify | strip_html | normalize_whitespace | xml_escape }}</title >
21
21
<link href =" {{ post.url | absolute_url }}" rel =" alternate" type =" text/html" title =" {{ post.title | xml_escape }}" />
22
22
<published >{{ post.date | date_to_xmlschema }}</published >
23
23
<updated >{{ post.last_modified_at | default: post.date | date_to_xmlschema }}</updated >
24
24
<id >{{ post.id | absolute_url | xml_escape }}</id >
25
- <content type =" text " xml : base =" {{ post.url | absolute_url | xml_escape }}" >{{ post.content | strip_html | strip | xml_escape }}</content >
25
+ <content type =" html " xml : base =" {{ post.url | absolute_url | xml_escape }}" >{{ post.content | strip_html | strip | xml_escape }}</content >
26
26
27
27
{%- assign post_author = post.author | default: site.author -%}
28
28
<author >
@@ -33,7 +33,7 @@ layout: null
33
33
</author >
34
34
35
35
{%- if post.summary or post.excerpt -%}
36
- <summary type =" text " >{{ post.summary | default: post.excerpt | strip_html | normalize_whitespace | xml_escape }}</summary >
36
+ <summary type =" html " >{{ post.summary | default: post.excerpt | strip_html | normalize_whitespace | xml_escape }}</summary >
37
37
{%- endif -%}
38
38
39
39
{%- assign post_image = post.image -%}
You can’t perform that action at this time.
0 commit comments