Skip to content

Commit ec1f2ef

Browse files
author
Michael Yu
committed
MC-800: [Doc] Create Custom Content Block
- Added documentation for creating custom content block
1 parent f25f5de commit ec1f2ef

24 files changed

+580
-6
lines changed

app/code/Magento/PageBuilder/docs/CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
1. [Code of Conduct](#code-of-conduct)
1212
4. [Developer documentation]
1313
5. [Roadmap and known issues]
14+
6. [Creating Custom Content Block]
1415

1516
[Introduction]: README.md
1617
[Installation Guide]: install.md

app/code/Magento/PageBuilder/docs/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ It replaces the default WYSIWYG Editor in the Admin area with a highly configura
2929
1. [Custom Toolbar]
3030
1. [Full width page layouts]
3131
5. [Roadmap and known issues]
32+
6. [Creating Custom Content Block]
3233

3334
[Introduction]: README.md
3435
[Contribution guide]: CONTRIBUTING.md
@@ -55,3 +56,4 @@ It replaces the default WYSIWYG Editor in the Admin area with a highly configura
5556
[Full width page layouts]: full-width-page-layouts.md
5657
[Add image uploader to content type]: image-uploader.md
5758
[Roadmap and Known Issues]: roadmap.md
59+
[Creating Custom Content Block]: creating-custom-content-block.md

app/code/Magento/PageBuilder/docs/architecture-overview.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
1. [Custom Toolbar]
2727
1. [Full width page layouts]
2828
5. [Roadmap and known issues]
29+
6. [Creating Custom Content Block]
2930

3031
[Introduction]: README.md
3132
[Contribution guide]: CONTRIBUTING.md
@@ -52,6 +53,7 @@
5253
[Full width page layouts]: full-width-page-layouts.md
5354
[Add image uploader to content type]: image-uploader.md
5455
[Roadmap and Known Issues]: roadmap.md
56+
[Creating Custom Content Block]: creating-custom-content-block.md
5557

5658
## What is PageBuilder?
5759

@@ -178,4 +180,4 @@ Appearances allow you to make the following customization on existing content ty
178180

179181
[TypeScript]: https://www.typescriptlang.org/
180182
[master format]: master-format.md
181-
[content type]: how-to-add-new-content-type.md
183+
[content type]: how-to-add-new-content-type.md

app/code/Magento/PageBuilder/docs/bindings.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
1. [Custom Toolbar]
2727
1. [Full width page layouts]
2828
5. [Roadmap and known issues]
29+
6. [Creating Custom Content Block]
2930

3031
[Introduction]: README.md
3132
[Contribution guide]: CONTRIBUTING.md
@@ -52,6 +53,7 @@
5253
[Full width page layouts]: full-width-page-layouts.md
5354
[Add image uploader to content type]: image-uploader.md
5455
[Roadmap and Known Issues]: roadmap.md
56+
[Creating Custom Content Block]: creating-custom-content-block.md
5557

5658
## Summary
5759

app/code/Magento/PageBuilder/docs/block-chooser-component.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
1. [Custom Toolbar]
2727
1. [Full width page layouts]
2828
5. [Roadmap and known issues]
29+
6. [Creating Custom Content Block]
2930

3031
[Introduction]: README.md
3132
[Contribution guide]: CONTRIBUTING.md
@@ -52,6 +53,7 @@
5253
[Full width page layouts]: full-width-page-layouts.md
5354
[Add image uploader to content type]: image-uploader.md
5455
[Roadmap and Known Issues]: roadmap.md
56+
[Creating Custom Content Block]: creating-custom-content-block.md
5557

5658
## What's in this topic
5759

app/code/Magento/PageBuilder/docs/bluefoot-data-migration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
1. [Add image uploader to content type]
2828
1. [Full width page layouts]
2929
5. [Roadmap and known issues]
30+
6. [Creating Custom Content Block]
3031

3132
[Introduction]: README.md
3233
[Installation Guide]: install.md
@@ -54,6 +55,7 @@
5455
[Full width page layouts]: full-width-page-layouts.md
5556
[Add image uploader to content type]: image-uploader.md
5657
[Roadmap and Known Issues]: roadmap.md
58+
[Creating Custom Content Block]: creating-custom-content-block.md
5759

5860
## Overview
5961

app/code/Magento/PageBuilder/docs/content-type-configuration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
1. [Custom Toolbar]
3030
1. [Full width page layouts]
3131
5. [Roadmap and known issues]
32+
6. [Creating Custom Content Block]
3233

3334
[Introduction]: README.md
3435
[Contribution guide]: CONTRIBUTING.md
@@ -55,6 +56,7 @@
5556
[Full width page layouts]: full-width-page-layouts.md
5657
[Add image uploader to content type]: image-uploader.md
5758
[Roadmap and Known Issues]: roadmap.md
59+
[Creating Custom Content Block]: creating-custom-content-block.md
5860

5961
## Configuration
6062

app/code/Magento/PageBuilder/docs/content-type-preview.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
1. **Render a backend content type preview**
2323
1. [Custom Toolbar]
2424
5. [Roadmap and known issues]
25+
6. [Creating Custom Content Block]
2526

2627
[Introduction]: README.md
2728
[Contribution guide]: CONTRIBUTING.md
@@ -43,7 +44,8 @@
4344
[Store component master format as widget directive]: widget-directive.md
4445
[Render a backend content type preview]: content-type-preview.md
4546
[Custom Toolbar]: toolbar.md
46-
[Roadmap and known issues]: roadmap.md
47+
[Roadmap and Known Issues]: roadmap.md
48+
[Creating Custom Content Block]: creating-custom-content-block.md
4749

4850

4951
## What's in this topic

0 commit comments

Comments
 (0)