Just trying to understand the web UI’s formatting.
Using the <> button, where you have to use shift+Enter between lines or it reverts back to normal.
module foo() {
do();
some();
thing();
}
Normal:
module bar() {
something();
else();
}
Using Type / Code:
module baz() {
how();
about();
this();
}
and back to normal after Shift+Enter.
Just trying to understand the web UI’s formatting.
Using the <> button, where you have to use shift+Enter between lines or it reverts back to normal.
`module foo() {`\
` do();`\
` some();`\
` thing();`\
`}`
Normal:
module bar() {
something();
else();
}
Using Type / Code:
```
module baz() {
how();
about();
this();
}
```
and back to normal after Shift+Enter.