Skip to content

Instantly share code, notes, and snippets.

@OnkelTem
Created January 18, 2022 16:00
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 OnkelTem/576cabff39e24dea5cc088b915397eb4 to your computer and use it in GitHub Desktop.
Save OnkelTem/576cabff39e24dea5cc088b915397eb4 to your computer and use it in GitHub Desktop.

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