Explore >> Select a destination


You are here

com.micahrl.me
| | www.ryanfiller.com
3.1 parsecs away

Travel
| | How to build a system that will read, set, and save a user's preferred color scheme.
| | home.hedy.dev
1.5 parsecs away

Travel
| | How I've set up syntax highlighting for my website with dark mode support.
| | blog.jim-nielsen.com
4.7 parsecs away

Travel
| | Writing about the big beautiful mess that is making things for the world wide web.
| | vxlabs.com
16.5 parsecs away

Travel
| The syntax-highlighted fenced code blocks in GitHub flavored markdown, or GFM, are a beautiful and useful invention. One starts a code block with three or more backticks or tildes, followed by the name of the language, and then proceeds to show one's code, which, at least on GitHub, is then syntax highlighted. In other words, something like this in your markdown: ```python def computer_says(no): print("computer says %s" % (no,)) ``` Would become this in the preview: