-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathrelease_data.html
More file actions
21 lines (20 loc) · 962 Bytes
/
release_data.html
File metadata and controls
21 lines (20 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{
# We cannot use a data file for two reasons:
# 1. We'd need to escape every single '>' in the changelog
# 2. We cannot use Liquid tags to generate the post URL and therefore would be required to put in an absolute URL
#
# releaseChangelog should contain the release highlights of the latest NewPipe release
# releasePostUrl should contain the URL to the corresponding blog post. If there is no blog post for this release,
# leave the inner of the capture group empty. When accessing this field, ensure to check if
# releasePostUrl is empty: releasePostUrl != empty
}}
{%- capture releaseChangelog -%}
<ul>
<li>Warning about ongoing google certification</li>
<li>Fixed not stacking comment pages</li>
<li>Fixed click through clicks though unavailable content screen</li>
</ul>
{%- endcapture -%}
{%- capture releasePostUrl -%}
{{ site.baseurl }}/blog/pinned/announcement/keepAndroidOpen/
{%- endcapture -%}