Skip to content

Commit 21cb267

Browse files
layout trace attributes in broken-out ref pages
1 parent 1717bb2 commit 21cb267

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+93
-57
lines changed

_data/make_ref_pages.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@
1111
"sliders", "updatemenus", "annotations", "shapes", "images", "global"
1212
]:
1313
fullattr = "layout" + ("." + attr if attr != "global" else "")
14+
extra = "" if attr != "global" else """
15+
{%- for trace in site.data.plotschema.traces -%}
16+
{% if trace[1].layoutAttributes %}
17+
{% assign attribute=trace[1].layoutAttributes %}
18+
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" %}
19+
{% endif %}
20+
{%- endfor -%}
21+
"""
1422
with open(f"../_posts/reference_pages/{lang}/2020-07-20-{attr}.html" , 'w') as f:
1523
f.write(
1624
f"""---
@@ -29,7 +37,7 @@
2937
3038
{{% assign attribute=site.data.plotschema.layout.layoutAttributes %}}
3139
{{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="{attr}" %}}
32-
40+
{extra}
3341
</div>
3442
</div>
3543
"""

_posts/reference_pages/javascript/2020-07-20-annotations.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.annotations</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="annotations" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-coloraxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.coloraxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="coloraxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-geo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.geo</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="geo" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-global.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ <h2>JavaScript Figure Reference: <code>layout</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="global" %}
17-
17+
18+
{%- for trace in site.data.plotschema.traces -%}
19+
{% if trace[1].layoutAttributes %}
20+
{% assign attribute=trace[1].layoutAttributes %}
21+
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" %}
22+
{% endif %}
23+
{%- endfor -%}
24+
1825
</div>
1926
</div>

_posts/reference_pages/javascript/2020-07-20-images.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.images</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="images" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-mapbox.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.mapbox</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="mapbox" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-polar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.polar</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="polar" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-scene.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.scene</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="scene" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-shapes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.shapes</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="shapes" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-sliders.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.sliders</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="sliders" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-ternary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.ternary</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="ternary" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-updatemenus.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.updatemenus</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="updatemenus" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-xaxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.xaxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="xaxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/javascript/2020-07-20-yaxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>JavaScript Figure Reference: <code>layout.yaxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="yaxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-annotations.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.annotations</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="annotations" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-coloraxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.coloraxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="coloraxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-geo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.geo</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="geo" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-global.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ <h2>MATLAB Figure Reference: <code>layout</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="global" %}
17-
17+
18+
{%- for trace in site.data.plotschema.traces -%}
19+
{% if trace[1].layoutAttributes %}
20+
{% assign attribute=trace[1].layoutAttributes %}
21+
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" %}
22+
{% endif %}
23+
{%- endfor -%}
24+
1825
</div>
1926
</div>

_posts/reference_pages/matlab/2020-07-20-images.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.images</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="images" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-mapbox.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.mapbox</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="mapbox" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-polar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.polar</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="polar" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-scene.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.scene</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="scene" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-shapes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.shapes</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="shapes" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-sliders.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.sliders</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="sliders" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-ternary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.ternary</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="ternary" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-updatemenus.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.updatemenus</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="updatemenus" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-xaxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.xaxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="xaxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/matlab/2020-07-20-yaxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>MATLAB Figure Reference: <code>layout.yaxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="yaxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-annotations.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.annotations</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="annotations" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-coloraxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.coloraxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="coloraxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-geo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.geo</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="geo" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-global.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ <h2>Python Figure Reference: <code>layout</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="global" %}
17-
17+
18+
{%- for trace in site.data.plotschema.traces -%}
19+
{% if trace[1].layoutAttributes %}
20+
{% assign attribute=trace[1].layoutAttributes %}
21+
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" %}
22+
{% endif %}
23+
{%- endfor -%}
24+
1825
</div>
1926
</div>

_posts/reference_pages/python/2020-07-20-images.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.images</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="images" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-mapbox.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.mapbox</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="mapbox" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-polar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.polar</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="polar" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-scene.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.scene</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="scene" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-shapes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.shapes</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="shapes" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-sliders.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.sliders</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="sliders" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-ternary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.ternary</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="ternary" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-updatemenus.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.updatemenus</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="updatemenus" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-xaxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.xaxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="xaxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/python/2020-07-20-yaxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>Python Figure Reference: <code>layout.yaxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="yaxis" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/r/2020-07-20-annotations.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>R Figure Reference: <code>layout.annotations</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="annotations" %}
17-
17+
1818
</div>
1919
</div>

_posts/reference_pages/r/2020-07-20-coloraxis.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ <h2>R Figure Reference: <code>layout.coloraxis</code></h2>
1414

1515
{% assign attribute=site.data.plotschema.layout.layoutAttributes %}
1616
{% include posts/reference-block.html parentlink="layout" block="layout" parentpath="layout" mustmatch="coloraxis" %}
17-
17+
1818
</div>
1919
</div>

0 commit comments

Comments
 (0)