Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Move Glossary page to Getting Started. #54120

Merged
merged 3 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This handbook is focused on block development and is divided into five sections,

**[Getting Started](https://developer.wordpress.org/block-editor/getting-started/)**

For those just starting out with block development this is where you can get set up with a [development environment](https://developer.wordpress.org/block-editor/getting-started/devenv/) and learn the [fundamentals of block development](https://developer.wordpress.org/block-editor/getting-started/create-block/).
For those just starting out with block development this is where you can get set up with a [development environment](https://developer.wordpress.org/block-editor/getting-started/devenv/) and learn the [fundamentals of block development](https://developer.wordpress.org/block-editor/getting-started/create-block/). Its [Glossary of terms](https://developer.wordpress.org/block-editor/getting-started/glossary/) and [FAQs](https://developer.wordpress.org/block-editor/getting-started/faq/) should answer any outstanding questions you may have.


**[How-to Guides](https://developer.wordpress.org/block-editor/how-to-guides/)**
Expand All @@ -44,7 +44,7 @@ This section is the heart of the handbook and is where you can get down to the n

**[Explanations](https://developer.wordpress.org/block-editor/explanations/)**

This section enables you to go deeper and reinforce your practical knowledge with a theoretical understanding of the [Architecture](https://developer.wordpress.org/block-editor/explanations/architecture/) of the block editor. Its [Glossary of terms](https://developer.wordpress.org/block-editor/explanations/glossary/) and [FAQs](https://developer.wordpress.org/block-editor/explanations/faq/) should answer any outstanding questions you may have.
This section enables you to go deeper and reinforce your practical knowledge with a theoretical understanding of the [Architecture](https://developer.wordpress.org/block-editor/explanations/architecture/) of the block editor.


**[Contributor Guide](https://developer.wordpress.org/block-editor/contributors/)**
Expand Down
2 changes: 1 addition & 1 deletion docs/contributors/design/reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Reference

- [Glossary](/docs/explanations/glossary.md)
- [Glossary](/docs/getting-started/glossary.md)
- [Coding Guidelines](/docs/contributors/code/coding-guidelines.md)
- [Testing Overview](/docs/contributors/code/testing-overview.md)
- [Frequently Asked Questions](/docs/explanations/faq.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The [WordPress.org Roadmap](https://wordpress.org/about/roadmap/) with Four Phas

Checking in on [issues](https://github.com/WordPress/gutenberg/issues) and [PRs](https://github.com/WordPress/gutenberg/pulls) on GitHub. This will give you a nearly real-time understanding of what’s being worked on by the developers and designers.

- [Glossary](/docs/explanations/glossary.md)
- [Glossary](/docs/getting-started/glossary.md)
- [Frequently Asked Questions](/docs/explanations/faq.md)
- [Project History](/docs/explanations/history.md)
- [Outreach](/docs/getting-started/outreach.md)
File renamed without changes.
12 changes: 6 additions & 6 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@
"markdown_source": "../docs/getting-started/outreach.md",
"parent": "getting-started"
},
{
"title": "Glossary",
"slug": "glossary",
"markdown_source": "../docs/getting-started/glossary.md",
"parent": "getting-started"
},
{
"title": "How-to Guides",
"slug": "how-to-guides",
Expand Down Expand Up @@ -2141,12 +2147,6 @@
"markdown_source": "../docs/explanations/faq.md",
"parent": "explanations"
},
{
"title": "Glossary",
"slug": "glossary",
"markdown_source": "../docs/explanations/glossary.md",
"parent": "explanations"
},
{
"title": "History",
"slug": "history",
Expand Down
4 changes: 2 additions & 2 deletions docs/toc.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
]
},
{ "docs/getting-started/full-site-editing.md": [] },
{ "docs/getting-started/outreach.md": [] }
{ "docs/getting-started/outreach.md": [] },
{ "docs/getting-started/glossary.md": [] }
]
},
{
Expand Down Expand Up @@ -322,7 +323,6 @@
]
},
{ "docs/explanations/faq.md": [] },
{ "docs/explanations/glossary.md": [] },
{ "docs/explanations/history.md": [] }
]
},
Expand Down
2 changes: 1 addition & 1 deletion packages/block-library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ To find out more about contributing to this package or Gutenberg as a whole, ple
}
```

2. Register the block in the `gutenberg_reregister_core_block_types()` function of the [`lib/blocks.php`](https://github.com/WordPress/gutenberg/blob/trunk/lib/blocks.php) file. Add it to the `block_folders` array if it's a [static block](https://developer.wordpress.org/block-editor/explanations/glossary/#static-block) or to the `block_names` array if it's a [dynamic block](https://developer.wordpress.org/block-editor/explanations/glossary/#dynamic-block).
2. Register the block in the `gutenberg_reregister_core_block_types()` function of the [`lib/blocks.php`](https://github.com/WordPress/gutenberg/blob/trunk/lib/blocks.php) file. Add it to the `block_folders` array if it's a [static block](https://developer.wordpress.org/block-editor/getting-started/glossary/#static-block) or to the `block_names` array if it's a [dynamic block](https://developer.wordpress.org/block-editor/getting-started/glossary/#dynamic-block).

3. Add `init.js` file to the directory of the new block:

Expand Down
2 changes: 1 addition & 1 deletion packages/create-block/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ $ npx @wordpress/create-block@latest --template ./path/to/template-directory

#### `--variant`

With this argument, `create-block` will generate a [dynamic block](https://developer.wordpress.org/block-editor/explanations/glossary/#dynamic-block) based on the built-in template.
With this argument, `create-block` will generate a [dynamic block](https://developer.wordpress.org/block-editor/getting-started/glossary/#dynamic-block) based on the built-in template.

```bash
$ npx @wordpress/create-block@latest --variant dynamic
Expand Down
Loading