gui
gui copied to clipboard
Incorrect indentation with more than one level of "@…["
From @jsmaniac on August 26, 2016 23:41
#lang scribble/lp2
@itemlist[
@item{Foo
@itemlist[
@item{Bar}]}]
The file above should likely indent as:
#lang scribble/lp2
@itemlist[
@item{Foo
@itemlist[
@item{Bar}]}]
Another example which does not mix [ and {:
@itemlist[
@item[
"Foo"
@itemlist[
@item["Bar"]]]]
which should indent as:
@itemlist[
@item[
"Foo"
@itemlist[
@item["Bar"]]]]
Copied from original issue: racket/scribble#55
I moved the issue here, since I had opened it in racket/scribble by accident.
It is related to https://github.com/racket/scribble/issues/54
By the way, thanks @rfindler for yesterday's fixes! :-)