我正在尝试在 Racket 的 scribble/lp 中编写一个小示例程序。该项目的源代码在Github上。
我遇到的问题是编织 html 中的链接断开。我已将其作为gh-page 提供。为项目。
使用命令“Sribble LPexample.scrbl”输出文档时,我收到以下警告:
2013 blog > scribble LPexample.scrbl
[Output to LPexample.html]
Warning: some cross references may be broken due to undefined tags:
(dep ((lib "2htdp/image.rkt") ellipse))
(mod-path "racket")
(dep ((lib "2htdp/image.rkt") beside/align))
(dep ((lib "2htdp/image.rkt") rectangle))
(mod-path "scribble/lp")
并且输出文件在断开的链接下放置了红色下划线。
被乱写的文件是 LPexample.scrbl。这很简单:
#lang scribble/manual
@require[scribble/lp-include]
@title{Literate Programming Example}
// snip
@lp-include["LPexample.rkt"]
文学编程文档中提供断开链接的部分是第 69-86 行:
which weaves to this:
@chunk[<blue_square>
(rectangle 100 100 "solid" "blue")]
can be composed into other functions this way:
@verbatim|{
@chunk[<blue_square>
(beside/align "bottom"
(ellipse 20 70 "solid" "lightsteelblue")
<blue_square>)]}|
which weaves out to:
@chunk[<example_body>
(beside/align "bottom"
(ellipse 20 70 "solid" "lightsteelblue")
<blue_square>)]
当然,我一直在研究 Racket 文档。但是,即使使用直接的 scribble/core 或 scribble/manual 来交叉链接文档,也没有很好的例子,更不用说 scribble/lp。
我也尝试过挖掘 Racket 文档的源代码,但指南和参考的涂鸦文件使用了如此多的自定义函数、宏和依赖项,以至于我无法充分了解它,挖掘出来一个简单的“哦,原来如此”。