Skip to content

Instantly share code, notes, and snippets.

@Answeror
Last active February 19, 2020 09:59
Show Gist options
  • Save Answeror/f742582061a9b028987e to your computer and use it in GitHub Desktop.
Save Answeror/f742582061a9b028987e to your computer and use it in GitHub Desktop.
page update notice based on md5
<feed xml:lang='zh-CN' xmlns='http://www.w3.org/2005/Atom'>
<id>{{ uri }}</id>
<link rel='alternate' type='text/html' href='{{ uri }}'/>
<title>{{ uri }}</title>
<entry>
{% set hash = content.encode('ascii')|md5 %}
<id>{{ hash }}</id>
<link rel='alternate' type='text/html' href='{{ uri }}'/>
<title>{{ uri }}</title>
<content type='text'>{{ hash }}</content>
</entry>
</feed>
{
"@jinja2": {
"template": {"text<": "feed.xml"},
"kargs": {
"uri": "{{ uri }}",
"content": {
"[body]": {"@request": "{{ uri }}"}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment