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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mkdocstrings-github
3
- Version: 0.4.3
3
+ Version: 0.4.4
4
4
  Summary: A GitHub Action handler for mkdocstrings
5
5
  Author-email: Mark Hu <watermarkhu@gmail.com>
6
6
  License: MIT
@@ -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=87NCgz-zY16rU7tEmJETJ0gLwdzxoBrqLtp9vsVCsiw,2435
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=89hEu1dagyqEV_40iTeCR4UKvdI4HlIJaUAebqugxNM,3400
14
- mkdocstrings_github-0.4.3.dist-info/METADATA,sha256=0G1SP3Qs5hbC6rPz32iZ1uJT-jnaFq6X7pWNUfeHLnc,3340
15
- mkdocstrings_github-0.4.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- mkdocstrings_github-0.4.3.dist-info/licenses/LICENSE,sha256=5enZtJ4zSp0Ps3jTqFQ4kadcx62BhgTaDNPrXWb3g3E,1069
17
- mkdocstrings_github-0.4.3.dist-info/RECORD,,
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
- {% with inputs = data.inputs | order_parameters(options.parameters_order) | filter_parameters(required=True) %}
31
- {% filter highlight(language="yaml", inline=False, linenums=False) %}
32
- - uses: {{ signature }}
33
- with:
34
- {%+ for input in inputs %}{{ input.name }}: ''{% endfor +%}
35
- {% endfilter %}
36
- {% endwith %}
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
- {%+ for input in inputs %}{{ input.name }}: ''{% endfor +%}
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
- {%+ for secret in secrets %}{{ secret.name }}: ''{% endfor +%}
47
+ {% for secret in secrets %}
48
+ {{ secret.name }}: 📝
49
+ {% endfor %}
46
50
  {% endif %}
47
51
  {% endwith %}
48
52
  {% endif %}