Re: [racket-users] Combining body-id in title with hidden attribute in scribble

2016-06-20 Thread Matthew Flatt
Providing 'hidden as `#:style` is shorthand for (make-style #f (list 'hidden)) When you're already using `make-style`, you can add 'hidden to the list of properties: (title #:style (make-style #f (list 'hidden (make-body-id "beta"))) ) At Mon, 20 Jun 2016 03:47:56 -0700 (PDT), Kathi

[racket-users] Combining body-id in title with hidden attribute in scribble

2016-06-20 Thread Kathi Fisler
I need to make the title of a scribbled document hidden, while also using the title construct to modify the body-id. Before I added the body-id, I was using (title #:style 'hidden text) My current replacement (to add body-id) looks like: (title #:style (make-style #f (list