Update autohelp template for Config Reference

To eliminate the strings "`` ``" displayed at generated HTML.

Change-Id: Idc8c22c9a81ebbe328abef97b309ec8843470915
Implements: blueprint config-ref-rst
This commit is contained in:
KATO Tomoyuki 2015-11-30 16:43:34 +09:00
parent 18a251e7a8
commit 66acf4f037
1 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,11 @@
* - **[{{ group }}]** * - **[{{ group }}]**
- -
{% for item in items[loop.index0] %} {% for item in items[loop.index0] %}
* - ``{{ item[0] }}`` = ``{{ item[1]|default(' ', true) }}`` {% if item[1] is equalto '' %}
* - ``{{ item[0] }}`` =
{% else %}
* - ``{{ item[0] }}`` = ``{{ item[1] }}``
{% endif %}
- {{ item[2] }} - {{ item[2] }}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}