mkdocstrings-github 0.4.3__py3-none-any.whl → 0.4.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mkdocstrings_github-0.4.3.dist-info → mkdocstrings_github-0.4.4.dist-info}/METADATA +1 -1
- {mkdocstrings_github-0.4.3.dist-info → mkdocstrings_github-0.4.4.dist-info}/RECORD +6 -6
- mkdocstrings_handlers/github/templates/material/action.html.jinja +11 -7
- mkdocstrings_handlers/github/templates/material/workflow.html.jinja +6 -2
- {mkdocstrings_github-0.4.3.dist-info → mkdocstrings_github-0.4.4.dist-info}/WHEEL +0 -0
- {mkdocstrings_github-0.4.3.dist-info → mkdocstrings_github-0.4.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,14 +4,14 @@ mkdocstrings_handlers/github/handler.py,sha256=QJbZjRbllUuGs5rY6SLwaII6hsPQnioa_
|
|
|
4
4
|
mkdocstrings_handlers/github/objects.py,sha256=JDkY7mg_LGlIEwZHP2wSd8ZkB6RVtRsu_JEpwV-PikQ,7069
|
|
5
5
|
mkdocstrings_handlers/github/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
mkdocstrings_handlers/github/rendering.py,sha256=6xcE2WwyTRW_38g7Ek55hlm53EsFFqueazFw12__DyA,2820
|
|
7
|
-
mkdocstrings_handlers/github/templates/material/action.html.jinja,sha256=
|
|
7
|
+
mkdocstrings_handlers/github/templates/material/action.html.jinja,sha256=_mfYFUJfaYtraK-VF2_i2vPafU0QsBIDb3bYHxuXlI8,2510
|
|
8
8
|
mkdocstrings_handlers/github/templates/material/heading.html.jinja,sha256=wnvZpNED8Dhb935qnddeDExXN-MIUz8frRRfgq-A9VA,1396
|
|
9
9
|
mkdocstrings_handlers/github/templates/material/inputs.html.jinja,sha256=CIcw3OBQdCP4e5A4srLu1v3xoOjsedIw1Zh3qxtG0-A,3482
|
|
10
10
|
mkdocstrings_handlers/github/templates/material/outputs.html.jinja,sha256=jlzVF93q5AyJfOiSl3_1VBVL3c6rjmEcS81s3sri5Gg,2670
|
|
11
11
|
mkdocstrings_handlers/github/templates/material/secrets.html.jinja,sha256=1lMJoxjjeiqetVu0mdLKmZ1faYRReeyjiYvYTZESots,2881
|
|
12
12
|
mkdocstrings_handlers/github/templates/material/style.css,sha256=R2hh1RfHwJ6XNT4YQl_txNkNXcPBZJMCBZn5kQEMQ6M,962
|
|
13
|
-
mkdocstrings_handlers/github/templates/material/workflow.html.jinja,sha256=
|
|
14
|
-
mkdocstrings_github-0.4.
|
|
15
|
-
mkdocstrings_github-0.4.
|
|
16
|
-
mkdocstrings_github-0.4.
|
|
17
|
-
mkdocstrings_github-0.4.
|
|
13
|
+
mkdocstrings_handlers/github/templates/material/workflow.html.jinja,sha256=FsUCb91LdWBwOtMpWOLMTVtP44QQSHuxO-HKR4c9Ld4,3444
|
|
14
|
+
mkdocstrings_github-0.4.4.dist-info/METADATA,sha256=CV-IoKbaNQqIsXV6xzyoxV4W4l51Z-q_If7JqFw0m7w,3340
|
|
15
|
+
mkdocstrings_github-0.4.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
16
|
+
mkdocstrings_github-0.4.4.dist-info/licenses/LICENSE,sha256=5enZtJ4zSp0Ps3jTqFQ4kadcx62BhgTaDNPrXWb3g3E,1069
|
|
17
|
+
mkdocstrings_github-0.4.4.dist-info/RECORD,,
|
|
@@ -27,13 +27,17 @@ Context:
|
|
|
27
27
|
|
|
28
28
|
{% block signature scoped %}
|
|
29
29
|
{% if options.show_signature %}
|
|
30
|
-
{%
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
30
|
+
{% filter highlight(language="yaml", inline=False, linenums=False) %}
|
|
31
|
+
- uses: {{ signature }}
|
|
32
|
+
{% with inputs = data.inputs | order_parameters(options.parameters_order) | filter_parameters(required=True) %}
|
|
33
|
+
{% if inputs|length > 0 %}
|
|
34
|
+
with:
|
|
35
|
+
{% for input in inputs %}
|
|
36
|
+
{{ input.name }}: 📝
|
|
37
|
+
{% endfor %}
|
|
38
|
+
{% endif %}
|
|
39
|
+
{% endwith %}
|
|
40
|
+
{% endfilter %}
|
|
37
41
|
{% endif %}
|
|
38
42
|
{% endblock signature %}
|
|
39
43
|
|
|
@@ -35,14 +35,18 @@ Context:
|
|
|
35
35
|
{% with inputs = data.inputs | order_parameters(options.parameters_order) | filter_parameters(required=True) %}
|
|
36
36
|
{% if inputs|length > 0 %}
|
|
37
37
|
with:
|
|
38
|
-
{
|
|
38
|
+
{% for input in inputs %}
|
|
39
|
+
{{ input.name }}: 📝
|
|
40
|
+
{% endfor %}
|
|
39
41
|
{% endif %}
|
|
40
42
|
{% endwith %}
|
|
41
43
|
{% if options.signature_show_secrets %}
|
|
42
44
|
{% with secrets = data.secrets | order_parameters(options.parameters_order) | filter_parameters(required=True) %}
|
|
43
45
|
{% if secrets|length > 0 %}
|
|
44
46
|
secrets:
|
|
45
|
-
{
|
|
47
|
+
{% for secret in secrets %}
|
|
48
|
+
{{ secret.name }}: 📝
|
|
49
|
+
{% endfor %}
|
|
46
50
|
{% endif %}
|
|
47
51
|
{% endwith %}
|
|
48
52
|
{% endif %}
|
|
File without changes
|
{mkdocstrings_github-0.4.3.dist-info → mkdocstrings_github-0.4.4.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|