Skip to content

Commit 0d616d6

Browse files
committed
Fix HTML
1 parent f01c8a2 commit 0d616d6

File tree

6 files changed

+38
-38
lines changed

6 files changed

+38
-38
lines changed

src/cloud/architecture/pro-architecture.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following table summarizes the differences between environments:
2121
<table>
2222
<tbody>
2323
<tr>
24-
<td class="blank" />
24+
<td class="blank"></td>
2525
<th>Integration</th>
2626
<th>Staging</th>
2727
<th>Production</th>

src/guides/v2.3/coding-standards/docblock-standard-javascript.md

+22-22
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ namespace.readNumber = function(x) {
315315
-5
316316
1e5
317317
Math.PI</pre></td>
318-
<td />
318+
<td></td>
319319
</tr>
320320
<tr>
321321
<td>Number</td>
@@ -351,23 +351,23 @@ Boolean(0)</pre></td>
351351
<td>RegExp</td>
352352
<td><pre>new RegExp('hello')
353353
/world/g</pre></td>
354-
<td />
354+
<td></td>
355355
</tr>
356356
<tr>
357357
<td>Date</td>
358358
<td><pre>new Date
359359
new Date()</pre></td>
360-
<td />
360+
<td></td>
361361
</tr>
362362
<tr>
363363
<td>null</td>
364364
<td><pre>null</pre></td>
365-
<td />
365+
<td></td>
366366
</tr>
367367
<tr>
368368
<td>undefined</td>
369369
<td><pre>undefined</pre></td>
370-
<td />
370+
<td></td>
371371
</tr>
372372
<tr>
373373
<td>void</td>
@@ -396,7 +396,7 @@ new Date()</pre></td>
396396
<td>Object</td>
397397
<td><pre>{}
398398
{foo: 'abc', bar: 123, baz: null}</pre></td>
399-
<td />
399+
<td></td>
400400
</tr>
401401
<tr>
402402
<td>Object.&lt;string></td>
@@ -431,23 +431,23 @@ So the key will always be a string in for...in loops. But the compiler will veri
431431
function SomeClass() {}
432432
433433
new SomeClass();</pre></td>
434-
<td />
434+
<td></td>
435435
</tr>
436436
<tr>
437437
<td>SomeInterface</td>
438438
<td><pre>/** @interface */
439439
function SomeInterface() {}
440440
441441
SomeInterface.prototype.draw = function() {};</pre></td>
442-
<td />
442+
<td></td>
443443
</tr>
444444
<tr>
445445
<td>project.MyClass</td>
446446
<td><pre>/** @constructor */
447447
project.MyClass = function () {}
448448
449449
new project.MyClass()</pre></td>
450-
<td />
450+
<td></td>
451451
</tr>
452452
<tr>
453453
<td>Element</td>
@@ -495,7 +495,7 @@ new project.MyClass()</pre></td>
495495
<td>
496496
Simply the name of a type.
497497
</td>
498-
<td />
498+
<td></td>
499499
</tr>
500500
<tr>
501501
<td>
@@ -512,7 +512,7 @@ new project.MyClass()</pre></td>
512512
Parametrizes a type, by applying a set of type arguments to
513513
that type. The idea is analogous to generics in Java.
514514
</td>
515-
<td />
515+
<td></td>
516516
</tr>
517517
<tr>
518518
<td>
@@ -547,7 +547,7 @@ new project.MyClass()</pre></td>
547547
have a <code>length</code> property, you might write
548548
<code>Array.&lt;{length}&gt;</code>.
549549
</td>
550-
<td />
550+
<td></td>
551551
</tr>
552552
<tr>
553553
<td>
@@ -595,7 +595,7 @@ new project.MyClass()</pre></td>
595595
<td>
596596
Specifies a function.
597597
</td>
598-
<td />
598+
<td></td>
599599
</tr>
600600
<tr>
601601
<td>
@@ -608,7 +608,7 @@ new project.MyClass()</pre></td>
608608
<td>
609609
Specifies a function return type.
610610
</td>
611-
<td />
611+
<td></td>
612612
</tr>
613613
<tr>
614614
<td>
@@ -623,7 +623,7 @@ new project.MyClass()</pre></td>
623623
<td>
624624
Specifies the context type of a function type.
625625
</td>
626-
<td />
626+
<td></td>
627627
</tr>
628628
<tr>
629629
<td>
@@ -639,7 +639,7 @@ new project.MyClass()</pre></td>
639639
<td>
640640
Specifies the constructed type of a constructor.
641641
</td>
642-
<td />
642+
<td></td>
643643
</tr>
644644
<tr>
645645
<td>
@@ -653,7 +653,7 @@ new project.MyClass()</pre></td>
653653
<td>
654654
Specifies variable arguments to a function.
655655
</td>
656-
<td />
656+
<td></td>
657657
</tr>
658658
<tr>
659659
<td>
@@ -667,7 +667,7 @@ new project.MyClass()</pre></td>
667667
Specifies that the annotated function accepts a variable
668668
number of arguments.
669669
</td>
670-
<td />
670+
<td></td>
671671
</tr>
672672
<tr>
673673
<td>
@@ -682,7 +682,7 @@ new project.MyClass()</pre></td>
682682
<td>
683683
Specifies optional arguments to a function.
684684
</td>
685-
<td />
685+
<td></td>
686686
</tr>
687687
<tr>
688688
<td>
@@ -697,7 +697,7 @@ new project.MyClass()</pre></td>
697697
Specifies that the annotated function accepts an optional
698698
argument.
699699
</td>
700-
<td />
700+
<td></td>
701701
</tr>
702702
<tr>
703703
<td>
@@ -709,7 +709,7 @@ new project.MyClass()</pre></td>
709709
<td>
710710
Indicates that the variable can take on any type.
711711
</td>
712-
<td />
712+
<td></td>
713713
</tr>
714714
<tr>
715715
<td>
@@ -722,7 +722,7 @@ new project.MyClass()</pre></td>
722722
Indicates that the variable can take on any type, and the
723723
compiler should not type-check any uses of it.
724724
</td>
725-
<td />
725+
<td></td>
726726
</tr>
727727
</tbody>
728728
</table>

src/guides/v2.3/contributor-guide/contributing_docs_suggested.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
4343
<li>Sample code showing the use of other widgets that are not documented, including <code><a href="{{ page.baseurl }}/javascript-dev-guide/widgets/widget_dialog.html">dropdowndialog</a></code> and <code><a href="{{ page.baseurl }}/javascript-dev-guide/widgets/widget_list.html">list</a></code>.</li>
4444
</ul>
4545
</td>
46-
<td />
46+
<td></td>
4747
</tr>
4848
<tr>
4949
<td><a href="https://github.com/magento/devdocs/issues/1465" target="_blank">Admin grids</a></td>
@@ -57,7 +57,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
5757
<li>New content must contain working code samples with explanations.</li>
5858
</ul>
5959
</td>
60-
<td />
60+
<td></td>
6161
</tr>
6262
<tr>
6363
<td><a href="https://github.com/magento/devdocs/issues/1437" target="_blank">Price adjustments</a></td>
@@ -70,7 +70,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
7070
<li>Describe what areas price adjustments affect.</li>
7171
</ul>
7272
</td>
73-
<td />
73+
<td></td>
7474
</tr>
7575
<tr>
7676
<td><a href="https://github.com/magento/devdocs/issues/1637" target="_blank">Category attributes</a></td>
@@ -89,7 +89,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
8989
</ul></li>
9090
</ul>
9191
</td>
92-
<td />
92+
<td></td>
9393
</tr>
9494
<tr>
9595
<td><a href="https://github.com/magento/devdocs/issues/434" target="_blank">Logging</a></td>
@@ -111,7 +111,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
111111
<li>Differentiate between versions of Magento, if applicable.</li>
112112
</ul>
113113
</td>
114-
<td />
114+
<td></td>
115115
</tr>
116116
</tbody>
117117
</table>

src/guides/v2.3/frontend-dev-guide/layouts/layout-types.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ The following table describes the instructions specific for page configuration f
169169
<li><code>&lt;attribute&gt;</code></li>
170170
</ul>
171171
</td>
172-
<td colspan="1" />
172+
<td colspan="1"></td>
173173
</tr>
174174
<tr>
175175
<td colspan="1"><code>&lt;head&gt;&lt;/head&gt;</code></td>
@@ -186,7 +186,7 @@ The following table describes the instructions specific for page configuration f
186186
<li><code>&lt;attribute&gt;</code></li>
187187
</ul>
188188
</td>
189-
<td colspan="1" />
189+
<td colspan="1"></td>
190190
</tr>
191191
<tr>
192192
<td colspan="1"><code>&lt;body&gt;&lt;/body&gt;</code></td>
@@ -202,7 +202,7 @@ The following table describes the instructions specific for page configuration f
202202
<li><code>&lt;action&gt;</code></li>
203203
</ul>
204204
</td>
205-
<td colspan="1" />
205+
<td colspan="1"></td>
206206
</tr>
207207
<tr>
208208
<td colspan="1"><code>&lt;attribute&gt;</code></td>
@@ -214,7 +214,7 @@ The following table describes the instructions specific for page configuration f
214214
</li>
215215
</ul>
216216
</td>
217-
<td colspan="1" />
217+
<td colspan="1"></td>
218218
<td colspan="1">
219219
<p>Specified for <code>&lt;html&gt;</code>, rendered like following:</p>
220220
<p><code>&lt;html name="value'&gt;</code></p>
@@ -254,7 +254,7 @@ The following table describes the instructions specific for page configuration f
254254
<td colspan="1">
255255
<span>none</span>
256256
</td>
257-
<td colspan="1" />
257+
<td colspan="1" ></td>
258258
</tr>
259259
<tr>
260260
<td colspan="1">
@@ -352,7 +352,7 @@ The following table describes the instructions specific for page configuration f
352352
<td colspan="1">
353353
<span>none</span>
354354
</td>
355-
<td colspan="1" />
355+
<td colspan="1"></td>
356356
</tr>
357357
<tr>
358358
<td colspan="1">
@@ -386,7 +386,7 @@ The following table describes the instructions specific for page configuration f
386386
<td colspan="1">
387387
<span>none</span>
388388
</td>
389-
<td colspan="1" />
389+
<td colspan="1"></td>
390390
</tr>
391391
</tbody>
392392
</table>
@@ -450,7 +450,7 @@ The following table describes the instructions specific for generic layout files
450450
<td colspan="1">
451451
none
452452
</td>
453-
<td />
453+
<td></td>
454454
</tr>
455455
<tr>
456456
<td colspan="1"><code>&lt;container&gt;</code></td>

src/guides/v2.3/ui_comp_guide/components/ui-massactions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The MassActions component has dependencies on the following components:
6161
</tr>
6262
<tr>
6363
<td><code>callback</code></td>
64-
<td />
64+
<td></td>
6565
<td><a href="{{ page.baseurl }}/ui_comp_guide/components/ui-column.html#column_action">ColumnAction</a></td>
6666
<td>Optional</td>
6767
</tr>

src/guides/v2.3/ui_comp_guide/concepts/ui_comp_xmlconfig_structure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ This topic describes the basic elements used in XML configuration files for decl
9595
<td>
9696
-
9797
</td>
98-
<td />
98+
<td></td>
9999
<td>
100100
Introduces the configuration block for UiComponent according
101101
to the <a href="{{ page.baseurl }}/ui_comp_guide/best-practices/semantic_config.html">

0 commit comments

Comments
 (0)