mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
1.7 KiB
1.7 KiB
title | template | taxonomy | routes | ||||
---|---|---|---|---|---|---|---|
App helpers (v{{ helpers_version }}) | docs |
|
|
Doc auto-generated by [this script](https://github.com/YunoHost/yunohost/blob/{{ current_commit }}/doc/generate_helper_doc.py) on {{date}} (YunoHost version {{version}})
{% for section_id, section in tree.items() %}
{{ section["title"].title() }}
{% if section['notes'] %}
{{ section['notes'] }}
{% endif %}{% for subsection, helpers in section["helpers"].items() %}
{{ subsection.upper() }}
{% for h in helpers %}
{{ h.name }}
[details summary="{{ h.brief }}" class="helper-card-subtitle text-muted"]
Usage: {{ h.usage }}
{%- if h.args %}
Arguments: {%- for infos in h.args %} {%- if infos|length == 2 %}
{{ infos[0] }}
: {{ infos[1] }} {%- else %}{{ infos[0] }}
,{{ infos[1] }}
: {{ infos[2] }} {%- endif %} {%- endfor %} {%- endif %} {%- if h.ret %}
Returns: {{ h.ret }} {%- endif %} {%- if "example" in h.keys() %}
Example: {{ h.example }}
{%- endif %}
{%- if "examples" in h.keys() %}
Examples: {% for example in h.examples %} {% if not example.strip().startswith("# ") %}
{{ example }}
{% else %}{{ example.strip("# ") }}
{% endif %} {% endfor %} {%- endif %} {%- if h.details %}
Details:
{{ h.details }}
{%- endif %}
[Dude, show me the code!](https://github.com/YunoHost/yunohost/blob/{{ current_commit }}/helpers/helpers.v{{ helpers_version if helpers_version != "2" else "1" }}.d/{{ subsection }}#L{{ h.line + 1 }})
[/details]
{% endfor %}
{% endfor %}
{% endfor %}