Skip to content

Commit ffa6aa1

Browse files
MAGEDOC-3583: RTM topics and tasks
Apply suggestions per review Co-Authored-By: bdenham <[email protected]>
1 parent 0649b5e commit ffa6aa1

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/getting-started/install-pagebuilder-examples.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ This repo contains two types of examples:
1111
The following custom content type modules are here for you to download and install so you can learn by example:
1212

1313
- **[PageBuilderQuote](https://github.com/magento-devdocs/pagebuilder-examples/tree/master/PageBuilderQuote)**—This module shows you how to use a simple content type to stylize quotations for things like customer testimonials. This is the completed module featured in the [content type tutorial](../create-custom-content-type/overview.md).
14-
- **[PageBuilderGrid](https://github.com/magento-devdocs/pagebuilder-examples/tree/master/PageBuilderGrid)**This module shows how you can create a content type to rebuild the Magento Luma home page using a grid structure with grid items.
15-
- **[PageBuilderFaq](https://github.com/magento-devdocs/pagebuilder-examples/tree/master/PageBuilderFaq)**This module shows how you can create a content type for an FAQ page that uses an accordion for the questions and answers.
14+
- **[PageBuilderGrid](https://github.com/magento-devdocs/pagebuilder-examples/tree/master/PageBuilderGrid)**This module shows you how to create a content type to rebuild the Magento Luma home page using a grid structure with grid items.
15+
- **[PageBuilderFaq](https://github.com/magento-devdocs/pagebuilder-examples/tree/master/PageBuilderFaq)**This module shows you how to create a content type for an FAQ page that uses an accordion for the questions and answers.
1616

1717
## Files for how-to topics
1818

19-
This documentation contains several how-to topics for adding features to your content type. The corresponding how-to directories in the repo provide the code changes required for adding the feature to the PageBuilderQuote module.
19+
This documentation contains several how-to topics for adding features to your content type. The corresponding how-to directories in the repo provide the code changes required for adding the feature to the `PageBuilderQuote` module.
2020

21-
For example, the topic [How to add a custom toolbar](../how-to/how-to-add-custom-toolbar.md), has a corresponding directory within the [pagebuilder-examples repo](https://github.com/magento-devdocs/pagebuilder-examples) called [how-to-add-custom-toolbar](https://github.com/magento-devdocs/pagebuilder-examples/tree/master/how-to-add-custom-toolbar). This directory provides the files with the code changes you need to make in order to add a custom toolbar to the PageBuilderQuote module.
21+
For example, the topic [How to add a custom toolbar](../how-to/how-to-add-custom-toolbar.md), has a corresponding directory within the [pagebuilder-examples repo](https://github.com/magento-devdocs/pagebuilder-examples) called [how-to-add-custom-toolbar](https://github.com/magento-devdocs/pagebuilder-examples/tree/master/how-to-add-custom-toolbar). This directory provides the files with the code changes you need to make in order to add a custom toolbar to the `PageBuilderQuote` module.
2222

2323

2424

docs/how-to/how-to-add-block-chooser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Extends all `abstract` configuration.
1717
<tr>
1818
<td><code>dataUrlConfigPath</code></td>
1919
<td>String</td>
20-
<td>The path inside the Page Builder configuration object that points to the controller URL used to request data for display in the grid. </br>For example, if you utilize the <code>additional_data</code> configuration feature and you add the URL you could specify <code>content_types.mycontenttype.additional_data.my_cusom_property.my_data_url</code>.</td>
20+
<td>The path inside the Page Builder configuration object that points to the controller URL used to request data for display in the grid. </br>For example, if you use the <code>additional_data</code> configuration feature and add the URL, you could specify <code>content_types.mycontenttype.additional_data.my_cusom_property.my_data_url</code>.</td>
2121
</tr>
2222
<tr>
2323
<td><code>requestParameter</code></td>

docs/how-to/how-to-add-icons-images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Page Builder Admin icons follow the same design principles as the core [Magento
66

77
## Page Builder icons
88

9-
Here are the available Page Builder Admin font icons (with class names) for use within your content type as needed:
9+
Here are the available Page Builder Admin font icons (with class names) for use within your content type:
1010

1111
![Page Builder admin icons](../images/pagebuilder-icons.png){:width="870px" height="auto"}
1212

@@ -106,7 +106,7 @@ The following CSS rule set shows one general way to link your icons through CSS:
106106
}
107107
```
108108

109-
If you are creating an icon for the panel, replace the `background-image` attribute with `content` (as described in the content type tutorial, [Step 6: Add an icon](../create-custom-content-type/step-6-add-icon.md)).
109+
If you create an icon for the panel, replace the `background-image` attribute with `content` (as described in the content type tutorial, [Step 6: Add an icon](../create-custom-content-type/step-6-add-icon.md)).
110110

111111
| Attribute | Description |
112112
| ---------------------- | ------------------------------------------------------------ |

docs/how-to/how-to-deactivate-pagebuilder.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# How to deactivate Page Builder
22

3-
We recommend you deactivate the Page Builder editor through the Admin UI instead of disabling the module through the CLI using `bin/magento`. If you use the CLI, you could break various layouts, for example, the full-width layouts. Deactivating from the Admin UI allows the Page Builder module to continue rendering the content on the storefront even if the editor is not used in the Admin.
3+
We recommend deactivating the Page Builder editor through the Admin UI instead of disabling the module through the CLI using `bin/magento`. If you use the CLI, you could break various layouts, for example, the full-width layouts. Deactivating from the Admin UI allows the Page Builder module to continue rendering the content on the storefront even if the editor is not used in the Admin.
44

5-
Follow these steps to deactivate Page Builder within the Admin UI:
5+
Follow these steps to deactivate Page Builder in the Admin UI:
66

77
1. In the **Stores** tab, select **Configuration** under the Settings group.
88
2. In the **General** group on the page, select **Content Management**.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# What is Page Builder?
22

33
Page Builder is a Magento extension for creating content with drag-and-drop controls.
4-
We call these controls content types, which provide several key features including:
4+
We call these controls content types, which provide several key features, including:
55

66
- **Dragging-and-dropping** of UI controls to build a page.
77
- **Live previews** of how the content will look on the storefront.

0 commit comments

Comments
 (0)