We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3f110f commit d6bf76fCopy full SHA for d6bf76f
explainers/README.md
@@ -7,9 +7,12 @@ Explainers are documents focused on describing a user/ developer/ customer probl
7
Currently, the following explainers are available to read and provide feedback:
8
9
<!--
10
-{%- for file in site.static_files -%}
11
-{% if file.path contains 'explainer.md' %}{{ file.path }}{% endif %}
12
-{%- endfor -%}
+<ul>{%- for file in site.static_files -%}
+{% if file.path contains 'explainer.md' %}
+ {% assign items = file.path | split: "/" %}
13
+ <li><a href="/DevTools/{{ post.path | remove:'.md'}}">{{ items[-2] }}</a></li>
14
+ {% endif %}
15
+{%- endfor -%}</ul>
16
-->
17
18
0 commit comments