File tree Expand file tree Collapse file tree 3 files changed +79
-309
lines changed
Expand file tree Collapse file tree 3 files changed +79
-309
lines changed Original file line number Diff line number Diff line change 1010 "kw": "kw-flutter-1",
1111 "kw2": "kw-flutter-2",
1212 "ft": "flutter-web-staging",
13- "filip": "flutter-website-filiph-staging"
13+ "filip": "flutter-website-filiph-staging",
14+ "brianegan": "brianegan-flutter-staging"
1415 }
15- }
16+ }
Original file line number Diff line number Diff line change 1+ {% comment %}
2+ Generates a list of testing recipes for the given type. The type corresponds
3+ to the name of the directory under cookbook/testing/* .
4+
5+ Usage: {% include testing_toc.md type='unit' %}
6+ {% endcomment -%}
7+
8+ {% assign dir = 'cookbook/testing/' | append: include.type %}
9+
10+ {% assign recipes = site.pages | where_exp:"item", "item.dir contains dir" | sort: 'title' %}
11+
12+ {% for recipe in recipes -%}
13+ {% comment %}
14+ Exclude index pages (all other pages will end in ` .html ` ).
15+ {% endcomment -%}
16+ {% if recipe.url contains '.html' -%}
17+ - [ {{ recipe.title }}] ({{ recipe.url }})
18+ {% endif -%}
19+ {% endfor %}
You can’t perform that action at this time.
0 commit comments