Created
September 24, 2021 17:04
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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