File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 14
14
15
15
{% for post in posts %}
16
16
<entry >
17
- <title >{{post.title}}</title >
18
- <link rel =" alternate" href =" https://blog.rust-lang.org/{{blog.prefix}}{{post.url}}" type =" text/html" title =" {{post.title}}" />
19
- <published >{{post.published}}</published >
20
- <updated >{{post.updated}}</updated >
21
- <id >https://blog.rust-lang.org/{{blog.prefix}}{{post.url}}</id >
22
- <content type =" html" xml : base =" https://blog.rust-lang.org/{{blog.prefix}}{{post.url}}" >{{post.contents}}</content >
17
+ <title >{{post.title | escape_hbs }}</title >
18
+ <link rel =" alternate" href =" https://blog.rust-lang.org/{{blog.prefix}}{{post.url | escape_hbs }}" type =" text/html" title =" {{post.title | escape_hbs }}" />
19
+ <published >{{post.published | escape_hbs }}</published >
20
+ <updated >{{post.updated | escape_hbs }}</updated >
21
+ <id >https://blog.rust-lang.org/{{blog.prefix}}{{post.url | escape_hbs }}</id >
22
+ <content type =" html" xml : base =" https://blog.rust-lang.org/{{blog.prefix}}{{post.url | escape_hbs }}" >{{post.contents | escape_hbs }}</content >
23
23
24
24
<author >
25
- <name >{{post.author}}</name >
25
+ <name >{{post.author | escape_hbs }}</name >
26
26
</author >
27
27
</entry >
28
- {% endfor %}
28
+ {%- endfor %}
29
29
</feed >
You can’t perform that action at this time.
0 commit comments