From 37c89d04d189cd6041e7d7497f5bfaa63cc4bdd7 Mon Sep 17 00:00:00 2001 From: Blake Bourque Date: Thu, 18 Jan 2024 09:40:04 -0500 Subject: [PATCH] Fix link typo --- codelabs/custom_generator/custom_generator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codelabs/custom_generator/custom_generator.md b/codelabs/custom_generator/custom_generator.md index e4039bfa58..34ab94ac6a 100644 --- a/codelabs/custom_generator/custom_generator.md +++ b/codelabs/custom_generator/custom_generator.md @@ -35,7 +35,7 @@ This codelab will demonstrate how to add code to the Blockly sample app to creat ### The application -Use the (`npx @blockly/create-package app`)[https://www.npmjs.com/package/@blockly/create-package) command to create a standalone application that contains a sample setup of Blockly, including custom blocks and a display of the generated code and output. +Use the [`npx @blockly/create-package app`](https://www.npmjs.com/package/@blockly/create-package) command to create a standalone application that contains a sample setup of Blockly, including custom blocks and a display of the generated code and output. 1. Run `npx @blockly/create-package app custom-generator-codelab`. This will create a blockly application in the folder `custom-generator-codelab`. 1. `cd` into the new directory: `cd custom-generator-codelab`. 1. Run `npm start` to start the server and run the sample application.