Skip to content

Commit

Permalink
whitespace again
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmelville-gds authored Jun 6, 2023
1 parent 77e199a commit 94ef9c6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions cloudformation_docs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,30 +83,30 @@ def add_breaks(text):
The list of parameters for this template:
| Parameter | Type | Default | Description |
|------------------|--------|-----------|-------------|
{% for parameter in parameters -%}
{% for parameter in parameters %}
| {{ parameter }} | {{ parameters[parameter].Type }} | {% if parameters[parameter].Default %}{{ parameters[parameter].Default}}{% endif %} | {% if parameters[parameter].Description %}{{ add_breaks(parameters[parameter].Description) }}{% endif %} |
{% endfor %}
{%- endblock %}
{% endfor -%}
{% endblock -%}
{% block resources %}
### Resources
The list of resources this template creates:
| Resource | Type |
|------------------|--------|
{% for resource in resources -%}
{% for resource in resources %}
| {{ resource }} | {{ resources[resource].Type }} |
{% endfor %}
{%- endblock %}
{% endfor -%}
{% endblock -%}
{% block outputs %}
### Outputs
The list of outputs this template exposes:
| Output | Description |
|------------------|---------------|
{% for output in outputs -%}
{% for output in outputs %}
| {{ output }} | {% if outputs[output].Description %}{{ add_breaks(outputs[output].Description) }}{% endif %} |
{% endfor %}
{%- endblock %}
{% endfor -%}
{% endblock -%}
"""


Expand Down

0 comments on commit 94ef9c6

Please sign in to comment.