Skip to content

Instantly share code, notes, and snippets.

@rattrayalex
Created August 20, 2022 08:33
Embed
What would you like to do?
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