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';
}