Skip to content

Instantly share code, notes, and snippets.

@rattrayalex
Created August 20, 2022 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rattrayalex/df3b3a75dbb9bad01808867532885aa5 to your computer and use it in GitHub Desktop.
Save rattrayalex/df3b3a75dbb9bad01808867532885aa5 to your computer and use it in GitHub Desktop.
Demo for using github.dev for syntax highlighting in gmail

Hello world

This is some text. It has inline code and links.

  • hello world.
  • lists work
    1. Nested numbered.
    2. Go deep.
      1. Numbers in numbers.
      2. Hooray.
for (let i = 1; i <= 100; i++) {
    let out = '';
    if (i % 3 === 0) out += 'Fizz';
    if (i % 5 === 0) out += 'Buzz';
    console.log(out || i);
}}

There are nice things like blockquotes too:

Hello world

- Alan Kay

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment