Jacqueline Firth
Jacqueline Firth
This pull request adjusts the behavior of `@tech{}` to better handle normalizing plural words to their singular forms. Specifically, it adds a rule to strip a trailing "es" in some...
With the `prefers-color-scheme` media query, CSS stylesheets can [detect whether the user has dark mode](https://css-tricks.com/dark-modes-with-css/) enabled in their operating system settings. Can we get a dark theme for Scribble docs?...
In racket/drracket#291 and racket/drracket#172, it was decided that "signature box" is a much better term than "blue box", and various parts of drracket's documentation were updated to use this phrase....
When using Scribble's `def` forms, a `#:kind` argument is sometimes provided to document the binding as "procedure", "syntax", "class", "constructor", etc. I'd like to be able to filter by kind...
Given this Scribble document: ```racket #lang scribble/manual @(require scribble/example) @(examples #:eval (make-base-eval) (+ 1 2 'bang!)) ``` And this `info.rkt` file: ```racket #lang info (define collection "examples-test") (define scribblings '(("examples-test.scrbl"...
In the block that `defmodule` outputs: ... it would be nice if the `package: mock` text was also a hyperlink to the mock package catalog entry (https://pkgd.racket-lang.org/pkgn/package/mock). I'm not sure...
If I type `stackoverflow.com` into the Chrome omnibox without pressing enter a little "Press tab to search Stack Overflow" note pops up: Now I can search StackOverflow directly without having...
Is there a standard action like this one, but which adds labels based on a pull request's description (or an issue's description) instead of its changed files? I'd like to...
Many companies run private deployments of package registries, and the names of packages in those registries are often both: 1. Entirely unrelated to the corresponding package with the same name...
It might be useful for Video to provide a way to read and write video data to and from arbitrary Racket ports, instead of only to and from files. I...