189
190
191
192
193
194
195
196
197
198
199
|
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
-
+
+
+
+
|
[listing-full-html string/f]
[listing-excerpt-html string/f]
[listing-short-html string/f])
#:constructor-name make-cache:article]{
Table holding cached article information.
Table holding cached @tech{article} information.
When creating a @racket[cache:article] (should you ever need to do so directly, which is unlikely),
the only required fields are @racket[_page], @racket[_title], and @racket[_conceal].
}
@defstruct*[cache:note ([id id/f]
[page symbol/f]
|
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
-
+
-
+
|
[listing-full-html string/f]
[listing-excerpt-html string/f]
[listing-short-html string/f])
#:constructor-name make-cache:note]{
Table holding cached information on notes.
Table holding cached information on @tech{notes}.
}
@defstruct*[cache:index-entry ([id id/f]
[entry string/f]
[subentry string/f]
[page symbol/f]
[html-anchor string/f])
#:constructor-name make-cache:index-entry]{
Table holding cached information about index entries found in articles.
Table holding cached information about index entries found in @tech{articles}.
}
@defstruct*[listing ([path string/f]
[title string/f]
|