Skip to content

Commit

Permalink
filter on priority 10 (currenty all packages) not 5
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcarlisle committed Dec 9, 2024
1 parent 43743f9 commit 514200a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _data/tagging-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# status required string Status of package, see list below.
# ctan-pkg optional string Name for ctan.org/pkg/?? link if different to name
# included-in optional string-list tlc3 arxiv10 arxiv5 arxiv1 arxiv01 arxiv001 (included in TLC or top n% of arxiv package use)
# priority optional integer Priority of work for unknown and incompatible entries (omitted from table if > 4)
# priority optional integer Priority of work for unknown and incompatible entries (omitted from table if > 10)
# comments optional markdown-string Free text markdown comments
# references optional integer-list List of integers referencing the bibliography in references.yml
# issues optional integer-list List of integers referencing primary issues at latex3/tagging-project
Expand Down
5 changes: 1 addition & 4 deletions tagging-status/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ td.date {white-space: nowrap;font-size:90%;}

{% assign t-s = "" | split: "" %}
{% for p in site.data.tagging-status %}
{% if p.priority < 5
or p.status == 'compatible'
or p.status == 'no-support'
%}
{% if p.priority < 10 %}
{% assign t-s = t-s | push: p %}
{% endif %}
{% endfor %}
Expand Down

0 comments on commit 514200a

Please sign in to comment.