
@camoy it is now on the cookbook https://github.com/Racket-Cookbooks/Plot-cookbook/blob/main/README.md#violin-plot
Please make this your entry in the creative racket competition https://github.com/standard-fish/creative-racket-2022

Creative Racket Competition entry: Autostereogram by Bert

Is there a way to redirect docs links in Scribble to a different site only for a specific collection or library? Right now, I’m doing --redirect-main
, but this requires I ship the entire Racket documentation. I’d like to redirect only for a specific collection, and otherwise redirect to Racket’s main documentation.

The following two commands worked well enough, where lib
is the library I wanted to redirect to my own site and contains lib/lib.scrbl
in its documentation library, and index.scrbl
is the file that I want to build with local links to lib
and redirected links to Racket forms: scribble --dest ./build --dest-name lib --htmls --info-out build/lib.sxref +m --redirect-main "<https://docs.racket-lang.com>" `racket -e "(require setup/collection-search)" -e "(display (path->string (collection-search '(lib \"lib/lib.scrbl\"))))"`
scribble --dest-name ./build --htmls ++info-in build/lib.sxref --redirect-main <https://docs.racket-lang.org/> +m ++style assignment/custom.css index.scrbl