spdegabrielle
2022-1-16 23:29:55

@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


spdegabrielle
2022-1-17 00:04:15

Creative Racket Competition entry: Autostereogram by Bert


wjb
2022-1-17 03:18:38

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.


wjb
2022-1-17 04:21:03

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-&gt;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