-
Notifications
You must be signed in to change notification settings - Fork 664
Writing a Codelab
-
❔ Do you have any guidelines for content? For example: no tutorials involving hacks/monkey patching, no tutorials involving third party plugins, etc. If there are I think the "What makes a great codelab?" section would be a good spot to put them.
- 🐙 Not yet, but I'll keep that in mind as a place to put them.
-
❔ I feel like a total teacher when I say this, so I kinda don't even want to mention it lol. But could you change Writing style > "Avoid walls of text or walls of code." from negative emphasis to positive emphasis? All of your other tips are so positive and motivational, this is the only one that doesn't match.
- 🐙 Done, and I added a few other things there.
-
❕ Overall, I really like this page! I think focusing on giving people tips was the right approach. It really makes me want to write a codelab! haha
- 🐙 I think some of your blog posts could turn into codelabs fairly easily.
A codelab is an interactive tutorial written in markdown syntax. We publish our codelabs at blocklycodelabs.dev. Codelabs use a mix of natural language, code samples, and screenshots to create a more interesting tutorial experience. The target user of a codelab is following along and running the code as they read.
Writing a codelab is a great way to contribute to the community. It's a way to share your knowledge and make life easier for the next developer who runs into the same problem.
A great codelab is focused and readable. It clearly tell the user what they will build and what they will learn, and it walks the user through writing and understanding code to complete a specific task.
If you have an idea for a codelab, you can tell us about it by making a feature request. Include a description of what you want to teach and what you will build in the codelab. We'll discuss and refine the idea. Then you can write it up and submit a pull request for it. Once it's been through review, a member of the Blockly team will publish it.
The rest of this page is a set of tips and questions to guide you through writing a codelab.
➡️ Check out Technical Writing One for a quick introduction to technical writing.
- Who is the target reader?
- What do they already know about using Blockly?
- What are they trying to learn?
- What is the minimum setup required for the user to run your code?
As with any writing, start with an outline. This is a good structure for most codelabs:
- Introduction
- What you'll learn
- What you'll build
- What you need to know
- Setup instructions
- Step one: [Title goes here]
- Explanation/motivation
- Code sample
- Expected results
- (Optional) More explanation
- ...
- Step ten: [Title goes here]
- Summary
- What you learned
- What you built
- Additional resources
- Link to completed code (if available)
While you can have more than ten steps, if you're hitting twenty you should consider breaking it into two codelabs.
- Use a conversational writing style.
- Use headings to make the organization clear.
- Use bulleted lists to break up walls of texts.
- State "what" before "how".
- For instance: "Click x to save" instead of "To save, click x".
- Use images and gifs!
- You can write in ES5, ES6, or Typescript.
- Follow the Google style guide