Asset_host in custom pages

I have activate :asset_host, host: config[:asset_host] working and all my blog posts get their image tags with relative paths properly adjusted to use the asset_host when their htmls are generated.
But, when I create an atom.xml they still keep their relative paths.
On my atom.xml.builder I have something like:

      ...
      xml.content "type" => "html" do
        xml.cdata!(article.body)
      end

I’d like to know if there is a way to make the asset_host extension work in that context too, or if there is a recomended way to accomplish this.