Skip to content

Commit c2929be

Browse files
committed
Fix human errors under _includes
Signed-off-by: Sora Morimoto <[email protected]>
1 parent f8ab633 commit c2929be

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

_includes/proposals.html

+7-9
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,24 @@ <h3>{{ proposals["title"] }}</h3>
1818
<ul class="featurelist__legend__tags">
1919
<li>
2020
{{ proposals["how-to-read"]["tags"]["last-presented"] }}:
21-
<div class="featurelist__item__presented featurelist-item-tag">
22-
<a
23-
href="{{ presentation.url }}"
24-
title='{{ proposals["last-presented-alt"] }}'
21+
<div class="featurelist__item__presented featurelist__item__tag">
22+
<a title='{{ proposals["last-presented-alt"] }}'
2523
>{{ proposals["how-to-read"]["tags"]["last-presented-fake-date"]
2624
}}</a
2725
>
2826
</div>
2927
</li>
3028
<li>
3129
{{ proposals["how-to-read"]["tags"]["tests"] }}:
32-
<div class="featurelist__item__tests featurelist-item-tag">
30+
<div class="featurelist__item__tests featurelist__item__tag">
3331
<a title='{{ proposals["tests-alt"] }}'>
3432
{{ proposals["tests"] }}
3533
</a>
3634
</div>
3735
</li>
3836
<li>
3937
{{ proposals["how-to-read"]["tags"]["spec"] }}:
40-
<div class="featurelist__item__spec featurelist-item-tag">
38+
<div class="featurelist__item__spec featurelist__item__tag">
4139
<a title='{{ proposals["specification-alt"] }}'>
4240
{{ proposals["specification"] }}
4341
</a>
@@ -61,7 +59,7 @@ <h4 class="featurelist__item__title flex-grow">
6159
<ul class="featurelist__item__status featurelist__item__tags">
6260
<!-- {% if proposal[1].presented | size %} {% for
6361
presentation in proposal[1].presented %}
64-
<li class="featurelist__item__presented featurelist-item-tag">
62+
<li class="featurelist__item__presented featurelist__item__tag">
6563
{%- if presentation.url -%}
6664
<a
6765
href="{{ presentation.url }}"
@@ -78,13 +76,13 @@ <h4 class="featurelist__item__title flex-grow">
7876
</li>
7977
{% endfor %} {% endif %} -->
8078
{% if proposal.tests | size %} {% for url in proposal.tests %}
81-
<li class="featurelist__item__tests featurelist-item-tag">
79+
<li class="featurelist__item__tests featurelist__item__tag">
8280
<a href="{{ url }}" title='{{ proposals["test-alt"] }}'>
8381
{{ proposals["tests"] }}
8482
</a>
8583
</li>
8684
{% endfor %} {% endif %} {% if proposal['has-specification'] %}
87-
<li class="featurelist__item__spec featurelist-item-tag">
85+
<li class="featurelist__item__spec featurelist__item__tag">
8886
<a
8987
href="https://tc39.es/{{ proposal.id }}"
9088
title='{{ proposals["specification-alt"] }}'

0 commit comments

Comments
 (0)