Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Bundle update and HTML fixing #7012

Merged
merged 4 commits into from
Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ GEM
ffi (>= 1.3.0)
eventmachine (1.2.7)
exifr (1.3.6)
faraday (1.0.0)
faraday (1.0.1)
multipart-post (>= 1.2, < 3)
ffi (1.12.2)
filesize (0.2.0)
forwardable-extended (2.6.0)
fspath (3.1.2)
html-proofer (3.15.1)
html-proofer (3.15.2)
addressable (~> 2.3)
mercenary (~> 0.3)
nokogumbo (~> 2.0)
Expand Down Expand Up @@ -109,7 +109,7 @@ GEM
mixlib-config (>= 2.2.1, < 4)
mercenary (0.3.6)
mini_portile2 (2.4.0)
mixlib-cli (2.1.5)
mixlib-cli (2.1.6)
mixlib-config (3.0.6)
tomlrb
multipart-post (2.1.1)
Expand All @@ -126,7 +126,7 @@ GEM
forwardable-extended (~> 2.6)
progress (3.5.2)
progressbar (1.10.1)
public_suffix (4.0.3)
public_suffix (4.0.4)
rainbow (3.0.0)
rake (13.0.1)
rb-fsevent (0.10.3)
Expand All @@ -148,7 +148,7 @@ GEM
unicode-display_width (1.7.0)
verbal_expressions (0.1.5)
wdm (0.1.1)
whatsup_github (0.0.1)
whatsup_github (0.1.1)
netrc (~> 0.10)
octokit (~> 4.14)
thor (~> 0.20)
Expand Down
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,3 +198,6 @@ githuburl23: https://github.com/magento/devdocs/tree/master/src/guides/v2.3/

# Path to S3 location where we store large downloadable binary files, such as .ai, .psd, .zip, .pdf, .sketch
downloads: https://devdocs.magento.com/download

exclude:
- .git
2 changes: 1 addition & 1 deletion src/cloud/architecture/pro-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The following table summarizes the differences between environments:
<table>
<tbody>
<tr>
<td class="blank" />
<td class="blank"></td>
<th>Integration</th>
<th>Staging</th>
<th>Production</th>
Expand Down
44 changes: 22 additions & 22 deletions src/guides/v2.3/coding-standards/docblock-standard-javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ namespace.readNumber = function(x) {
-5
1e5
Math.PI</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>Number</td>
Expand Down Expand Up @@ -351,23 +351,23 @@ Boolean(0)</pre></td>
<td>RegExp</td>
<td><pre>new RegExp('hello')
/world/g</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>Date</td>
<td><pre>new Date
new Date()</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>null</td>
<td><pre>null</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>undefined</td>
<td><pre>undefined</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>void</td>
Expand Down Expand Up @@ -396,7 +396,7 @@ new Date()</pre></td>
<td>Object</td>
<td><pre>{}
{foo: 'abc', bar: 123, baz: null}</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>Object.&lt;string></td>
Expand Down Expand Up @@ -431,23 +431,23 @@ So the key will always be a string in for...in loops. But the compiler will veri
function SomeClass() {}

new SomeClass();</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>SomeInterface</td>
<td><pre>/** @interface */
function SomeInterface() {}

SomeInterface.prototype.draw = function() {};</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>project.MyClass</td>
<td><pre>/** @constructor */
project.MyClass = function () {}

new project.MyClass()</pre></td>
<td />
<td></td>
</tr>
<tr>
<td>Element</td>
Expand Down Expand Up @@ -495,7 +495,7 @@ new project.MyClass()</pre></td>
<td>
Simply the name of a type.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -512,7 +512,7 @@ new project.MyClass()</pre></td>
Parametrizes a type, by applying a set of type arguments to
that type. The idea is analogous to generics in Java.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand Down Expand Up @@ -547,7 +547,7 @@ new project.MyClass()</pre></td>
have a <code>length</code> property, you might write
<code>Array.&lt;{length}&gt;</code>.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand Down Expand Up @@ -595,7 +595,7 @@ new project.MyClass()</pre></td>
<td>
Specifies a function.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -608,7 +608,7 @@ new project.MyClass()</pre></td>
<td>
Specifies a function return type.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -623,7 +623,7 @@ new project.MyClass()</pre></td>
<td>
Specifies the context type of a function type.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -639,7 +639,7 @@ new project.MyClass()</pre></td>
<td>
Specifies the constructed type of a constructor.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -653,7 +653,7 @@ new project.MyClass()</pre></td>
<td>
Specifies variable arguments to a function.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -667,7 +667,7 @@ new project.MyClass()</pre></td>
Specifies that the annotated function accepts a variable
number of arguments.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -682,7 +682,7 @@ new project.MyClass()</pre></td>
<td>
Specifies optional arguments to a function.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -697,7 +697,7 @@ new project.MyClass()</pre></td>
Specifies that the annotated function accepts an optional
argument.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -709,7 +709,7 @@ new project.MyClass()</pre></td>
<td>
Indicates that the variable can take on any type.
</td>
<td />
<td></td>
</tr>
<tr>
<td>
Expand All @@ -722,7 +722,7 @@ new project.MyClass()</pre></td>
Indicates that the variable can take on any type, and the
compiler should not type-check any uses of it.
</td>
<td />
<td></td>
</tr>
</tbody>
</table>
10 changes: 5 additions & 5 deletions src/guides/v2.3/contributor-guide/contributing_docs_suggested.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
<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>
</ul>
</td>
<td />
<td></td>
</tr>
<tr>
<td><a href="https://github.com/magento/devdocs/issues/1465" target="_blank">Admin grids</a></td>
Expand All @@ -57,7 +57,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
<li>New content must contain working code samples with explanations.</li>
</ul>
</td>
<td />
<td></td>
</tr>
<tr>
<td><a href="https://github.com/magento/devdocs/issues/1437" target="_blank">Price adjustments</a></td>
Expand All @@ -70,7 +70,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
<li>Describe what areas price adjustments affect.</li>
</ul>
</td>
<td />
<td></td>
</tr>
<tr>
<td><a href="https://github.com/magento/devdocs/issues/1637" target="_blank">Category attributes</a></td>
Expand All @@ -89,7 +89,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
</ul></li>
</ul>
</td>
<td />
<td></td>
</tr>
<tr>
<td><a href="https://github.com/magento/devdocs/issues/434" target="_blank">Logging</a></td>
Expand All @@ -111,7 +111,7 @@ If you take the issue and provide a PR to resolve it, make sure to add the link
<li>Differentiate between versions of Magento, if applicable.</li>
</ul>
</td>
<td />
<td></td>
</tr>
</tbody>
</table>
16 changes: 8 additions & 8 deletions src/guides/v2.3/frontend-dev-guide/layouts/layout-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ The following table describes the instructions specific for page configuration f
<li><code>&lt;attribute&gt;</code></li>
</ul>
</td>
<td colspan="1" />
<td colspan="1"></td>
</tr>
<tr>
<td colspan="1"><code>&lt;head&gt;&lt;/head&gt;</code></td>
Expand All @@ -186,7 +186,7 @@ The following table describes the instructions specific for page configuration f
<li><code>&lt;attribute&gt;</code></li>
</ul>
</td>
<td colspan="1" />
<td colspan="1"></td>
</tr>
<tr>
<td colspan="1"><code>&lt;body&gt;&lt;/body&gt;</code></td>
Expand All @@ -202,7 +202,7 @@ The following table describes the instructions specific for page configuration f
<li><code>&lt;action&gt;</code></li>
</ul>
</td>
<td colspan="1" />
<td colspan="1"></td>
</tr>
<tr>
<td colspan="1"><code>&lt;attribute&gt;</code></td>
Expand All @@ -214,7 +214,7 @@ The following table describes the instructions specific for page configuration f
</li>
</ul>
</td>
<td colspan="1" />
<td colspan="1"></td>
<td colspan="1">
<p>Specified for <code>&lt;html&gt;</code>, rendered like following:</p>
<p><code>&lt;html name="value'&gt;</code></p>
Expand Down Expand Up @@ -254,7 +254,7 @@ The following table describes the instructions specific for page configuration f
<td colspan="1">
<span>none</span>
</td>
<td colspan="1" />
<td colspan="1" ></td>
</tr>
<tr>
<td colspan="1">
Expand Down Expand Up @@ -352,7 +352,7 @@ The following table describes the instructions specific for page configuration f
<td colspan="1">
<span>none</span>
</td>
<td colspan="1" />
<td colspan="1"></td>
</tr>
<tr>
<td colspan="1">
Expand Down Expand Up @@ -386,7 +386,7 @@ The following table describes the instructions specific for page configuration f
<td colspan="1">
<span>none</span>
</td>
<td colspan="1" />
<td colspan="1"></td>
</tr>
</tbody>
</table>
Expand Down Expand Up @@ -450,7 +450,7 @@ The following table describes the instructions specific for generic layout files
<td colspan="1">
none
</td>
<td />
<td></td>
</tr>
<tr>
<td colspan="1"><code>&lt;container&gt;</code></td>
Expand Down
2 changes: 1 addition & 1 deletion src/guides/v2.3/ui_comp_guide/components/ui-massactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The MassActions component has dependencies on the following components:
</tr>
<tr>
<td><code>callback</code></td>
<td />
<td></td>
<td><a href="{{ page.baseurl }}/ui_comp_guide/components/ui-column.html#column_action">ColumnAction</a></td>
<td>Optional</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ This topic describes the basic elements used in XML configuration files for decl
<td>
-
</td>
<td />
<td></td>
<td>
Introduces the configuration block for UiComponent according
to the <a href="{{ page.baseurl }}/ui_comp_guide/best-practices/semantic_config.html">
Expand Down