Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?

Unindented code block

Source

```js
function main() {
  return 'test';
}
```

Result

function main() {
  return 'test';
}

Indented code block

Source

  ```js
  function main() {
    return 'test';
  }
  ```

Result

function main() {
  return 'test';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment