Tip 7 - title your code blocks
Add file names as titles to your code blocks.
Astro Docs includes a lot of code snippets! We spend a lot of time making sure the code in our examples is not just correct, but as minimal as necessary to illustrate one key idea. However, providing the best code example in the world isnât helpful if your reader doesnât know where to put it!
One PR edit I am often making is to title code blocks with the name of the file containing the code. However you add titles to your code samples (Starlight documentation sites include Expressive Code enabled by default), I suggest using that space to display the filename:
Be honest: do you sometimes just scan docs looking for the code examples to copy? đ (And, is it only sometimes?)
Especially in larger guides that involve multiple files (e.g. a layout, a dynamic routing page, a component), code samples without titles rely on your paragraph text to explain where this code is (or is to be added). This can mean rereading and double-checking of instructions, especially if your code examples only show the new lines of code to be added and not the surrounding code to give a hint as to which file youâre now talking about.
Providing the file name in the title is a great way to add helpful, contextual information without extra âexplainyâ words. Itâs the kind of âinformation denseâ presentation that doesnât overwhelm your reader. And as a title, it exists outside of the code itself so that it doesnât get copied to the clipboard.
If your reader is following along in their own project, seeing the title gives them a chance to navigate to their corresponding file even before they see the code. They may be juggling a lot in their head as they work through your instructions, and keeping the the location of the code tightly coupled with the code itself in one bundle can be a helpful convenience.
Toggle Comments
© 2021 - 2024 Sarah Rainsberger. Except where otherwise noted, and/or quoting external sources, the content of this site is licensed under CC BY-NC-SA 4.0