--- layout: null ---

<?xml version="1.0" encoding="utf-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

  <title>{{ site.title | xml_escape }}</title>
  <subtitle>{{ site.description | xml_escape }}</subtitle>
  <link href="{{ site.baseurl }}/" rel="alternate"/>
  <link href="{{ site.baseurl | append: /feed.xml }}" rel="self"/>
  <rights>Copyright @
    {{ site.time | date: '%Y' }},
    {{ site.author_name | xml_escape }}</rights>
  <icon>{{ site.baseurl }}/assets/favicon.png</icon>

  <author>
    <name>{{ site.author_name | xml_escape }}</name>
    <email>{{ site.author_email | xml_escape }}</email>
    <uri>https://twitter.com/{{ site.twitter_username }}</uri>
  </author>

  <updated>{{ site.time | date_to_xmlschema }}</updated>
  <id>{{ site.baseurl }}/</id>
  <generator version="{{ jekyll.version }}">Jekyll</generator>

  {% for post in site.posts limit:40 %}

  {% assign content = post.content | replace: "&#8617;", "&#8617;&#xfe0e;" %}
  {% assign content = content | replace: "data-lang", "lang" %}
  {% assign content = content | replace: "<mark>", "<b>" | replace: "</mark>", "</b>" %}

  <entry>
    <title type="html">{{ post.title | xml_escape }}</title>
    <id>{{ post.url | prepend: site.baseurl }}</id>
    <updated>{{ post.updated | date_to_xmlschema }}</updated>
    <published>{{ post.path | truncate: 20 | replace: "...", "" | replace: "_posts/", "" }}T10:00:00+02:00</published>
    <content type="html" xml:lang="en">
      <![CDATA[{{ content }}]]>
    </content>
  </entry>

  {% endfor %}

</feed>
