Skip to content

Commit 14fea21

Browse files
author
James Calcaben
committed
MAGETWO-91200: Update documentation for PageBuilder EAP
- Add and fix navigation
1 parent 668d763 commit 14fea21

15 files changed

+174
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ This project repository contains PageBuilder developer documentation on the foll
3434
1. [Content type configuration]
3535
1. [How to add a new content type]
3636
1. [Events]
37+
1. [Master format]
38+
1. [Visual select]
3739

3840
[Architecture overview]: app/code/Magento/PageBuilder/docs/architecture-overview.md
3941
[BlueFoot to PageBuilder data migration]: app/code/Magento/PageBuilder/docs/bluefoot-data-migration.md
@@ -44,6 +46,8 @@ This project repository contains PageBuilder developer documentation on the foll
4446
[Content type configuration]: app/code/Magento/PageBuilder/docs/content-type-configuration.md
4547
[How to add a new content type]: app/code/Magento/PageBuilder/docs/how-to-add-new-content-type.md
4648
[Events]: app/code/Magento/PageBuilder/docs/events.md
49+
[Master format]: app/code/Magento/PageBuilder/docs/master-format.md
50+
[Visual select]: app/code/Magento/PageBuilder/docs/visual-select.md
4751

4852
## Contribute to PageBuilder
4953

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

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Contributing to Magento 2 code
22

3+
## Navigation
4+
5+
1. [Introduction]
6+
2. [Installation guide]
7+
3. **Contribution guide**
8+
1. [Overview](#overview)
9+
1. [Contribution requirements](#contribution-requirements)
10+
1. [Contribution process](#contribution-process)
11+
1. [Code of Conduct](#code-of-conduct)
12+
4. [Developer documentation]
13+
5. [Roadmap and known issues]
14+
15+
[Introduction]: README.md
16+
[Installation Guide]: install.md
17+
[Contribution guide]: CONTRIBUTING.md
18+
[Developer documentation]: developer-documentation.md
19+
[Architecture overview]: architecture-overview.md
20+
[BlueFoot to PageBuilder data migration]: bluefoot-data-migration.md
21+
[Third-party content type migration]: new-content-type-example.md
22+
[Iconography]: iconography.md
23+
[Module integration]: module-integration.md
24+
[Additional data configuration]: custom-configuration.md
25+
[Content type configuration]: content-type-configuration.md
26+
[How to add a new content type]: how-to-add-new-content-type.md
27+
[Events]: events.md
28+
[Master format]: master-format.md
29+
[Visual select]: visual-select.md
30+
[Roadmap and Known Issues]: roadmap.m
31+
32+
## Overview
33+
334
Contributions to the Magento 2 codebase are done using the fork & pull model.
435
This contribution model has contributors maintaining their own copy of the forked codebase (which can easily be synced with the main copy). The forked repository is then used to submit a request to the base repository to “pull” a set of changes (hence the phrase “pull request”).
536

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ It replaces the default WYSIWYG Editor in the Admin area with a highly configura
1818
1. [Content type configuration]
1919
1. [How to add a new content type]
2020
1. [Events]
21+
1. [Master format]
22+
1. [Visual select]
2123
5. [Roadmap and known issues]
2224

2325
[Introduction]: README.md
@@ -33,4 +35,6 @@ It replaces the default WYSIWYG Editor in the Admin area with a highly configura
3335
[Content type configuration]: content-type-configuration.md
3436
[How to add a new content type]: how-to-add-new-content-type.md
3537
[Events]: events.md
38+
[Master format]: master-format.md
39+
[Visual select]: visual-select.md
3640
[Roadmap and Known Issues]: roadmap.md

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
1. [Content type configuration]
1616
1. [How to add a new content type]
1717
1. [Events]
18+
1. [Master format]
19+
1. [Visual select]
1820
5. [Roadmap and known issues]
1921

2022
[Introduction]: README.md
@@ -30,6 +32,8 @@
3032
[Content type configuration]: content-type-configuration.md
3133
[How to add a new content type]: how-to-add-new-content-type.md
3234
[Events]: events.md
35+
[Master format]: master-format.md
36+
[Visual select]: visual-select.md
3337
[Roadmap and Known Issues]: roadmap.md
3438

3539
## What is PageBuilder?

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
1. [Additional data configuration]
1414
1. [Content type configuration]
1515
1. [How to add a new content type]
16+
1. [Events]
17+
1. [Master format]
18+
1. [Visual select]
1619
5. [Roadmap and known issues]
1720

1821
[Introduction]: README.md
@@ -27,6 +30,9 @@
2730
[Additional data configuration]: custom-configuration.md
2831
[Content type configuration]: content-type-configuration.md
2932
[How to add a new content type]: how-to-add-new-content-type.md
33+
[Events]: events.md
34+
[Master format]: master-format.md
35+
[Visual select]: visual-select.md
3036
[Roadmap and known issues]: roadmap.md
3137

3238
## Overview

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
1. [Additional data configuration]
1818
1. **Content type configuration**
1919
1. [How to add a new content type]
20+
1. [Events]
21+
1. [Master format]
22+
1. [Visual select]
2023
5. [Roadmap and known issues]
2124

2225
[Introduction]: README.md
@@ -31,6 +34,9 @@
3134
[Additional data configuration]: custom-configuration.md
3235
[Content type configuration]: content-type-configuration.md
3336
[How to add a new content type]: how-to-add-new-content-type.md
37+
[Events]: events.md
38+
[Master format]: master-format.md
39+
[Visual select]: visual-select.md
3440
[Roadmap and known issues]: roadmap.md
3541

3642
## Configuration

app/code/Magento/PageBuilder/docs/custom-configuration.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
1. **Additional data configuration**
1515
1. [Content type configuration]
1616
1. [How to add a new content type]
17+
1. [Events]
18+
1. [Master format]
19+
1. [Visual select]
1720
5. [Roadmap and known issues]
1821

1922
[Introduction]: README.md
@@ -28,6 +31,9 @@
2831
[Additional data configuration]: custom-configuration.md
2932
[Content type configuration]: content-type-configuration.md
3033
[How to add a new content type]: how-to-add-new-content-type.md
34+
[Events]: events.md
35+
[Master format]: master-format.md
36+
[Visual select]: visual-select.md
3137
[Roadmap and known issues]: roadmap.md
3238

3339

app/code/Magento/PageBuilder/docs/developer-documentation.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
1. [Additional data configuration]
1515
1. [Content type configuration]
1616
1. [How to add a new content type]
17+
1. [Events]
18+
1. [Master format]
19+
1. [Visual select]
1720
5. [Roadmap and known issues]
1821

1922
**[Architecture overview]** - An overview of the PageBuilder module architecture.
@@ -32,6 +35,12 @@
3235

3336
**[How to add a new content type]** - Instructions for adding a new content type.
3437

38+
**[Events]** - Reference documentation for PageBuilder events.
39+
40+
**[Master format]** - Describes the master format for PageBuilder content types.
41+
42+
**[Visual select]** - Documentation on customizing the visual select field.
43+
3544
[Introduction]: README.md
3645
[Contribution guide]: CONTRIBUTING.md
3746
[Installation guide]: install.md
@@ -43,4 +52,7 @@
4352
[Additional data configuration]: custom-configuration.md
4453
[Content type configuration]: content-type-configuration.md
4554
[How to add a new content type]: how-to-add-new-content-type.md
55+
[Events]: events.md
56+
[Master format]: master-format.md
57+
[Visual select]: visual-select.md
4658
[Roadmap and known issues]: roadmap.md

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
1. [Content type configuration]
1616
1. [How to add a new content type]
1717
1. **Events**
18+
1. [Master format]
19+
1. [Visual select]
1820
5. [Roadmap and known issues]
1921

2022
[Introduction]: README.md
@@ -30,6 +32,8 @@
3032
[Content type configuration]: content-type-configuration.md
3133
[How to add a new content type]: how-to-add-new-content-type.md
3234
[Events]: events.md
35+
[Master format]: master-format.md
36+
[Visual select]: visual-select.md
3337
[Roadmap and Known Issues]: roadmap.md
3438

3539
This document contains reference information for events dispatched in PageBuilder.

app/code/Magento/PageBuilder/docs/how-to-add-new-content-type.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
1. [Additional data configuration]
1515
1. [Content type configuration]
1616
1. **How to add a new content type**
17+
1. [Events]
18+
1. [Master format]
19+
1. [Visual select]
1720
5. [Roadmap and known issues]
1821

1922
[Introduction]: README.md
@@ -28,6 +31,9 @@
2831
[Additional data configuration]: custom-configuration.md
2932
[Content type configuration]: content-type-configuration.md
3033
[How to add a new content type]: how-to-add-new-content-type.md
34+
[Events]: events.md
35+
[Master format]: master-format.md
36+
[Visual select]: visual-select.md
3137
[Roadmap and known issues]: roadmap.md
3238

3339

0 commit comments

Comments
 (0)