---
layout: nill
rooturi: http://stefan.artspace44.com
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
...
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="{{ page.rooturi }}{{ post.url }}" />
<updated>{{post.date | date_to_xmlschema }}</updated>
<id>{{ page.rooturi }}{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>
我需要更改每个帖子的内容,以便
<img href="/images/01.jpg" />
<a href="/2010/post/">Post</a>
变成:
<img href="http://stefan.artspace44.com/images/01.jpg" />
<a href="http://stefan.artspace44.com/2010/post/">Post</a>
我正在考虑做一些类似的事情
<content type='html'>
{{ post.content | make_hrefs_base page.rooturi }}
</content>
我会在哪里用jekyll或Liquid编写代码,如何解决仅更改指向“/ ”而不是“ http://otherdomain.com/ ”的href值的问题?
谢谢