```js // This is some JS [...colors] .map(color => toHex) .reduce(intoARainbow); async function funTimes(){ var response = await fetch(someURL) var json = await response.json(); doSomethingFancyWith(json); } funTimes().catch(ohNoes); ```

A code example

  {
    "lang": "en",
    "dir": "ltr",
    "name": "Super Racer 2000",
    "description": "The ultimate futuristic racing game from the future!",
    "short_name": "Racer2K",
    "icons": [{
      "src": "icon/lowres.webp",
      "sizes": "64x64",
      "type": "image/webp"
    },{
      "src": "icon/lowres.png",
      "sizes": "64x64"
    }, {
      "src": "icon/hd_hi",
      "sizes": "128x128"
    }],
    "scope": "/racer/",
    "start_url": "/racer/start.html",
    "display": "fullscreen",
    "orientation": "landscape",
    "theme_color": "aliceblue",
    "background_color": "red"
  }
  
## using back-ticks
```JS { "lang": "en", "dir": "ltr", "name": "Super Racer 2000", "description": "The ultimate futuristic racing game from the future!", "short_name": "Racer2K", "icons": [{ "src": "icon/lowres.webp", "sizes": "64x64", "type": "image/webp" },{ "src": "icon/lowres.png", "sizes": "64x64" }, { "src": "icon/hd_hi", "sizes": "128x128" }], "scope": "/racer/", "start_url": "/racer/start.html", "display": "fullscreen", "orientation": "landscape", "theme_color": "aliceblue", "background_color": "red" } ```

Typical HTML example

<!doctype>
<html>
<title>Super Racer 2000</title>

<!-- Startup configuration -->
<link rel="manifest" href="manifest.webmanifest">

<!-- Fallback application metadata for legacy browsers -->
<meta name="application-name" content="Racer2K">
<link rel="icon" sizes="16x16 32x32 48x48" href="lo_def.ico">
<link rel="icon" sizes="512x512" href="hi_def.png">

Don't highlight ("nohighlight")

function thisShouldNotHighlight(){
  // highlighting of this block of code has been disabled.
  const a = "test 123";
}
## Using markdown
  function thisIsNice(){
    becauseWeCanUseMarkdown();
  }

  // And using markdown is pretty sweet!
  const foo = "FOO";
  while(foo){
    Promise.all([...lotsOfPromises])
  }
  [...colors]
      .map(color => toHex)
      .reduce(intoARainbow);

  async function funTimes(){
    var response = await fetch(someURL)
    var json = await response.json();
    doSomethingFancyWith(json);
  }

  funTimes().catch(ohNoes);