Skip to content

Instantly share code, notes, and snippets.

@otherjoel
Created September 24, 2021 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save otherjoel/74a16dd9d27a9dc3b3db2f59bbcf33e6 to your computer and use it in GitHub Desktop.
Save otherjoel/74a16dd9d27a9dc3b3db2f59bbcf33e6 to your computer and use it in GitHub Desktop.
Example of Scribble/lp2 doc that does not produce links to definitions of stuff defined in the doc itself.
#lang scribble/lp2
@(require scribble/manual
(for-label racket/contract
racket/base))
@(declare-exporting "lp2.rkt")
@title[#:style manual-doc-style]{Example}
Check out the very cool @racket[analyze] function.
@defproc[(analyze) (boolean?)]{
Returns @racket[#t] every time.}
@chunk[<*>
(provide analyze)
(define (analyze) #t)
]
Once again check out the very cool @racket[analyze] function.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment