Jekyllを利用した私のブログは、 Atomフィードを提供しています。
---
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値のみを変更するという問題をどのように解決できますか?
ありがとうございました