Re: [racket-users] Scribble output without navigation

2019-12-08 Thread Matthew Flatt
At Sun, 8 Dec 2019 23:18:45 +, "'Reuben Thomas' via Racket Users" wrote: > On Sun, 8 Dec 2019 at 17:07, Matthew Flatt wrote: > > > > > There's now a 'no-toc+aux style property to completely get rid of that div. > > > > That's good, thanks; but I see that the maincolumn div is still emitted,

Re: [racket-users] Scribble output without navigation

2019-12-08 Thread 'Reuben Thomas' via Racket Users
On Sun, 8 Dec 2019 at 17:07, Matthew Flatt wrote: > > There's now a 'no-toc+aux style property to completely get rid of that div. > That's good, thanks; but I see that the maincolumn div is still emitted, so there's still a left margin. (I'm sorry, I hadn't looked into the CSS before to work out

Re: [racket-users] Scribble output without navigation

2019-12-08 Thread Matthew Flatt
At Sat, 7 Dec 2019 21:33:30 +, Reuben Thomas wrote: > On Fri, 6 Dec 2019 at 15:43, Matthew Flatt wrote: > > > Do 'no-toc and 'no-sidebar style properties on the main part help? Or > > does that still leave navigation elements that you want removed? > > > > That's a great improvement, thanks,

Re: [racket-users] Scribble output without navigation

2019-12-07 Thread 'Reuben Thomas' via Racket Users
On Fri, 6 Dec 2019 at 15:43, Matthew Flatt wrote: > Do 'no-toc and 'no-sidebar style properties on the main part help? Or > does that still leave navigation elements that you want removed? > That's a great improvement, thanks, although it still leaves the "tocset" div, now empty. What I couldn'

Re: [racket-users] Scribble output without navigation

2019-12-07 Thread 'Reuben Thomas' via Racket Users
On Fri, 6 Dec 2019 at 15:32, Sam Tobin-Hochstadt wrote: > Is there a reason that not showing it is a problem, relative to not > having it in the HTML? The CSS approach is quite easy. > I'm trying to generate XHTML for inclusion in web sites (as the main page contents) and ePUB files, so it's jus

Re: [racket-users] Scribble output without navigation

2019-12-06 Thread Matthew Flatt
Do 'no-toc and 'no-sidebar style properties on the main part help? Or does that still leave navigation elements that you want removed? At Fri, 6 Dec 2019 10:31:56 -0500, Sam Tobin-Hochstadt wrote: > Is there a reason that not showing it is a problem, relative to not > having it in the HTML? The CS

Re: [racket-users] Scribble output without navigation

2019-12-06 Thread Sam Tobin-Hochstadt
Is there a reason that not showing it is a problem, relative to not having it in the HTML? The CSS approach is quite easy. Sam On Fri, Dec 6, 2019 at 5:18 AM 'Reuben Thomas' via Racket Users wrote: > > On Thu, 5 Dec 2019 at 14:47, Sam Tobin-Hochstadt wrote: >> >> The usual way I've done this is

Re: [racket-users] Scribble output without navigation

2019-12-06 Thread 'Reuben Thomas' via Racket Users
On Thu, 5 Dec 2019 at 14:47, Sam Tobin-Hochstadt wrote: > The usual way I've done this is with some custom CSS to set the > navigation to "display: none". > Thanks. I would really prefer not to have the navigation apparatus, so I guess post-processing the output is the only thing I can do withou

Re: [racket-users] Scribble output without navigation

2019-12-05 Thread Sam Tobin-Hochstadt
The usual way I've done this is with some custom CSS to set the navigation to "display: none". Sam On Wed, Dec 4, 2019 at 5:12 PM 'Reuben Thomas' via Racket Users wrote: > > How can I get scribble/base to output HTML without the navigation elements? I > just want a plain HTML page, similar to t

[racket-users] Scribble output without navigation

2019-12-04 Thread 'Reuben Thomas' via Racket Users
How can I get scribble/base to output HTML without the navigation elements? I just want a plain HTML page, similar to the look of the LaTeX output. I can of course extract the "main" div from the standard output, but that seems to be somewhat shutting the stable door after the horse has bolted. G