Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ULs to OL to see a count #148

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,34 +25,34 @@ This page contains list of ACT Rules to test conformance [Web Content Accessibil

The ACT Rules in this section directly relate to WCAG 2 success criteria. These rules have been approved by the Accessibility Guidelines Working Group. They are fully implemented in at least one [test tool or methodology](../implementations/).

<ul>
<ol>
{%- for rule in site.data.wcag-act-rules.rules["act-rules"] %}
{%- if rule.proposed == false %}
<li><a href="{{ rule.permalink | relative_url }}">{{ rule.title }}</a></li>
{%- endif %}
{%- endfor %}
</ul>
</ol>

## Proposed Rules for WCAG 2

The ACT Rules in this section directly relate to WCAG 2 success criteria. These rules will be considered for approval once they are fully implemented in at least one test tool or methodology.

<ul>
<ol>
{%- for rule in site.data.wcag-act-rules.rules["act-rules"] %}
{%- if rule.proposed == true and rule.successCriteria.size > 0 %}
<li><a href="{{ rule.permalink | relative_url }}">{{ rule.title }}</a></li>
{%- endif %}
{%- endfor %}
</ul>
</ol>

## Rules beyond WCAG

The ACT Rules below do not directly relate to WCAG success criteria. They relate to other accessibility guidance such as [WAI-ARIA {% include_cached icon.html name="different-view" %}](https://www.w3.org/TR/wai-aria/) or [Techniques for WCAG 2 {% include_cached icon.html name="different-view" %}](https://www.w3.org/WAI/WCAG21/Techniques/). These rules will be considered for approval once they are fully implemented in at least one test tool or methodology.

<ul>
<ol>
{%- for rule in site.data.wcag-act-rules.rules["act-rules"] %}
{%- if rule.successCriteria.size == 0 %}
<li><a href="{{ rule.permalink | relative_url }}">{{ rule.title }}</a></li>
{%- endif %}
{%- endfor %}
</ul>
</ol>