
oldsin
2018-1-21 00:16:00
Hi, does anyone know how to use the <quote> in scribble?:disappointed_relieved:

ben
2018-1-21 01:08:03
which <quote> ?

ben
2018-1-21 01:08:34
(if you want to put a Racket value v
in a scribble file, you can put an @
in front of it — like @\|v\|
)

oldsin
2018-1-21 01:17:42
My fault, it’s the <blockquote> actually! like the one rendered with indentation in HTML!

oldsin
2018-1-21 01:23:55
it feels like most scribble document only use centralised format for quotations (for example, @centered{...}
). but I’m looking for sth that can be rendered like this:

ben
2018-1-21 01:23:56
I think there isn’t really a blockquote for scribble; but you can do @nested[#:style 'inset]{This text will be indented}

oldsin
2018-1-21 01:24:45
Wow Thanks!