Skip to content

Commit

Permalink
Update links to use full path
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaz committed Jul 9, 2020
1 parent 2ad518d commit 500479a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,4 @@ export default function Edit( { attributes, className, setAttributes } ) {
}
```

Next Section: [Finishing Touches](finishing.md)
Next Section: [Finishing Touches](/docs/designers-developers/developers/tutorials/create-block/finishing.md)
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ __( 'Gutenpride', 'create_block' );

This is an internationalization wrapper that allows for the string "Gutenpride" to be translated. The second parameter, "create_block" 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](block-attributes.md)
Next Section: [Block Attributes](/docs/designers-developers/developers/tutorials/create-block/block-attributes.md)
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ export default function Save( { attributes, className } ) {

Rebuild the block using `npm run build`, reload the editor and add the block. Type a message in the editor, save, and view it in the post.

Next Section: [Code Implementation](block-code.md)
Next Section: [Code Implementation](/docs/designers-developers/developers/tutorials/create-block/block-code.md)
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ Update **gutenpride.php** to enqueue from generated file location:
$editor_css = "build/index.css";
```

Next Section: [Authoring Experience](author-experience.md)
Next Section: [Authoring Experience](/docs/designers-developers/developers/tutorials/create-block/author-experience.md)
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ After activated, go to the block editor and use the inserter to search and add y
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. [ESNext Syntax](esnext-js.md)
3. [Anatomy of a Gutenberg Block ](block-anatomy.md)
4. [Block Attributes](block-attributes.md)
5. [Code Implementation](block-code.md)
6. [Authoring Experience](author-experience.md)
7. [Finishing Touches](finishing.md)
2. [ESNext Syntax](/docs/designers-developers/developers/tutorials/create-block/esnext-js.md)
3. [Anatomy of a Gutenberg Block ](/docs/designers-developers/developers/tutorials/create-block/block-anatomy.md)
4. [Block Attributes](/docs/designers-developers/developers/tutorials/create-block/block-attributes.md)
5. [Code Implementation](/docs/designers-developers/developers/tutorials/create-block/block-code.md)
6. [Authoring Experience](/docs/designers-developers/developers/tutorials/create-block/author-experience.md)
7. [Finishing Touches](/docs/designers-developers/developers/tutorials/create-block/finishing.md)
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ For more info, see the build section of the [Getting Started with JavaScript tut

Hopefully, at this point, you have your plugin created and activated. We have the package.json with the `@wordpress/scripts` dependency, that defines the build and start scripts. The basic block is in place and can be added to the editor.

Next Section: [Anatomy of a Block](block-anatomy.md)
Next Section: [Anatomy of a Block](/docs/designers-developers/developers/tutorials/create-block/block-anatomy.md)

0 comments on commit 500479a

Please sign in to comment.