Add warnings for suspiciously badly indented string quotations
Users who write this likely don’t understand how the indentation of string quotation works:
foo:
body -> $[ void foo {
[body]
]A warning could tell them not to write them like that, using negative indentation in two lines. Writing this is fine though:
Submitted by Lennart Kats on 25 August 2010 at 12:58
foo:
body -> $[
void foo {
[body]
}
]