[racket-users] Re: Scribble cannot use include-section when developing package library

2019-06-08 Thread Chen Xiao
Greenman's answer is right, resolve this problem absolutely. 在 2019年6月8日星期六 UTC+8下午4:13:56,Chen Xiao写道: > > When I developing my racket pacakge(simple-svg), I found I can't use > include-section and defmodule together. > > First, I split my scribble docs to separate files, and use

Re: [racket-users] [ann] marionette: control Firefox from Racket

2019-06-08 Thread Dexter Lagan
Pure awesomeness. Thank you for sharing! Dex > On Jun 8, 2019, at 5:46 PM, Bogdan Popa wrote: > > Hey everybody! > > I just wrote `marionette`, a library that lets you control the Firefox > web browser from Racket and I figured I'd share it! > > * the source code is here:

[racket-users] [ann] marionette: control Firefox from Racket

2019-06-08 Thread Bogdan Popa
Hey everybody! I just wrote `marionette`, a library that lets you control the Firefox web browser from Racket and I figured I'd share it! * the source code is here: https://github.com/bogdanp/marionette, * you can install the package by running `raco pkg install marionette` and * the docs will

Re: [racket-users] Scribble cannot use include-section when developing package library

2019-06-08 Thread Ben Greenman
In the separate files, try: @defmodule[simple-svg #:link-target? #f] -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[racket-users] Scribble cannot use include-section when developing package library

2019-06-08 Thread Chen Xiao
When I developing my racket pacakge(simple-svg), I found I can't use include-section and defmodule together. First, I split my scribble docs to separate files, and use include-section to include them. Then I found cross reference not works. I found when use scribble/manual to scribble package