File tree Expand file tree Collapse file tree 2 files changed +20
-7
lines changed Expand file tree Collapse file tree 2 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ <h1>{{ ref.info.brief }}</h1>
12
12
{%- if functions.size > 0 -%}
13
13
< table class ="compact ">
14
14
< tr >
15
- < th > FUNCTION </ th >
15
+ < th > FUNCTIONS </ th >
16
16
< th > </ th >
17
17
</ tr >
18
18
{%- for function in functions -%}
@@ -27,7 +27,7 @@ <h1>{{ ref.info.brief }}</h1>
27
27
{%- if variables.size > 0 -%}
28
28
< table class ="compact ">
29
29
< tr >
30
- < th > CONSTANT </ th >
30
+ < th > CONSTANTS </ th >
31
31
< th > </ th >
32
32
</ tr >
33
33
{%- for variable in variables -%}
@@ -57,7 +57,7 @@ <h1>{{ ref.info.brief }}</h1>
57
57
{%- if messages.size > 0 -%}
58
58
< table class ="compact ">
59
59
< tr >
60
- < th > MESSAGE </ th >
60
+ < th > MESSAGES </ th >
61
61
< th > </ th >
62
62
</ tr >
63
63
{%- for message in messages -%}
@@ -142,14 +142,14 @@ <h4>{{ function.name }}()<a href="#{% include ref_anchorlink.html element=functi
142
142
< h2 > Constants</ h2 >
143
143
{%- for variable in variables -%}
144
144
{% include ref_anchor_target.html element=variable %}
145
- < h4 > {{ variable.name }}< a href ="#{% include ref_anchorlink.html element=variable %} " class ="anchor-link "/> </ a > </ h4 >
146
- < p > {{ variable.description }}</ p >
145
+ < h5 class =" compact " > {{ variable.name }}< a href ="#{% include ref_anchorlink.html element=variable %} " class ="anchor-link "/> </ a > </ h5 class="compact" >
146
+ < p class =" compact " > {{ variable.description }}</ p >
147
147
148
148
{%- if variable.parameters.size > 0 -%}
149
149
{% include api_parameters.html parameters=variable.parameters %}
150
150
{%- endif -%}
151
-
152
- < hr />
151
+
152
+ {% if forloop.last == false %} < hr class =" compact " /> {% else %} < hr /> {% endif %}
153
153
{%- endfor -%}
154
154
{%- endif -%}
155
155
Original file line number Diff line number Diff line change @@ -403,6 +403,19 @@ mark {
403
403
margin-block-end : 0 ;
404
404
}
405
405
406
+ hr .compact {
407
+ margin-top : 1rem ;
408
+ margin-bottom : 1.5rem ;
409
+ }
410
+
411
+ h5 .compact {
412
+ margin-bottom : 5px ;
413
+ }
414
+
415
+ p .compact {
416
+ margin-bottom : 1.5rem ;
417
+ }
418
+
406
419
/* ******************************************************************************
407
420
* Page setup (to keep footer always at the bottom)
408
421
* Used in _layouts/base.html
You can’t perform that action at this time.
0 commit comments