mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 12:47:49 -06:00
Fix nesting of ULs
A <ul> tag is only allowed to have <li> tags inside it, so the nested <ul> tag needs to be inside the <li> tag. Contributes to issue CURA-6434.
This commit is contained in:
parent
c26dbfd934
commit
7258ad8dc2
1 changed files with 11 additions and 9 deletions
|
@ -40,15 +40,17 @@
|
||||||
|
|
||||||
<h3>Model Information:</h3>
|
<h3>Model Information:</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><b>Model 1</b></li>
|
<li>
|
||||||
<ul>
|
<b>Model 1</b>
|
||||||
<li><b>Hash:</b> b72789b9b...</li>
|
<ul>
|
||||||
<li><b>Transformation:</b> [transformation matrix]</li>
|
<li><b>Hash:</b> b72789b9b...</li>
|
||||||
<li><b>Bounding Box:</b> [minimum x, y, z; maximum x, y, z]</li>
|
<li><b>Transformation:</b> [transformation matrix]</li>
|
||||||
<li><b>Is Helper Mesh:</b> no</li>
|
<li><b>Bounding Box:</b> [minimum x, y, z; maximum x, y, z]</li>
|
||||||
<li><b>Helper Mesh Type:</b> support mesh</li>
|
<li><b>Is Helper Mesh:</b> no</li>
|
||||||
<li>...</li>
|
<li><b>Helper Mesh Type:</b> support mesh</li>
|
||||||
</ul>
|
<li>...</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h3>Print Times:</h3>
|
<h3>Print Times:</h3>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue