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: Switch doc file name, confusion with publishing #24244

Merged
merged 1 commit into from
Aug 4, 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
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ __( 'Gutenpride', 'gutenpride' );

This is an internationalization wrapper that allows for the string "Gutenpride" to be translated. The second parameter, "gutenpride" is called the text domain and gives context for where the string is from. The JavaScript internationalization, often abbreviated i18n, matches the core WordPress internationalization process. See the [I18n for WordPress documentation](https://codex.wordpress.org/I18n_for_WordPress_Developers) for more details.

Next Section: [Block Attributes](/docs/designers-developers/developers/tutorials/create-block/block-attributes.md)
Next Section: [Block Attributes](/docs/designers-developers/developers/tutorials/create-block/attributes.md)
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The create a block tutorials breaks down to the following sections.

1. [WordPress Plugin](/docs/designers-developers/developers/tutorials/create-block/wp-plugin.md)
2. [Anatomy of a Gutenberg Block ](/docs/designers-developers/developers/tutorials/create-block/block-anatomy.md)
3. [Block Attributes](/docs/designers-developers/developers/tutorials/create-block/block-attributes.md)
3. [Block Attributes](/docs/designers-developers/developers/tutorials/create-block/attributes.md)
4. [Code Implementation](/docs/designers-developers/developers/tutorials/create-block/block-code.md)
5. [Authoring Experience](/docs/designers-developers/developers/tutorials/create-block/author-experience.md)
6. [Finishing Touches](/docs/designers-developers/developers/tutorials/create-block/finishing.md)
4 changes: 2 additions & 2 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,8 @@
},
{
"title": "Block Attributes",
"slug": "block-attributes",
"markdown_source": "../docs/designers-developers/developers/tutorials/create-block/block-attributes.md",
"slug": "attributes",
"markdown_source": "../docs/designers-developers/developers/tutorials/create-block/attributes.md",
"parent": "create-block"
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/toc.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
{ "docs/designers-developers/developers/tutorials/create-block/readme.md": [
{ "docs/designers-developers/developers/tutorials/create-block/wp-plugin.md": [] },
{ "docs/designers-developers/developers/tutorials/create-block/block-anatomy.md": [] },
{ "docs/designers-developers/developers/tutorials/create-block/block-attributes.md": [] },
{ "docs/designers-developers/developers/tutorials/create-block/attributes.md": [] },
{ "docs/designers-developers/developers/tutorials/create-block/block-code.md": [] },
{ "docs/designers-developers/developers/tutorials/create-block/author-experience.md": [] },
{ "docs/designers-developers/developers/tutorials/create-block/finishing.md": [] }
Expand Down