78
79
80
81
82
83
84
85
86
87
88
|
78
79
80
81
82
83
84
85
86
87
88
|
-
+
|
html-link
html-xref
html-url
html-fn
html-fndef
html-note)
html-note-with-srcline)
(define html-item (default-tag-function 'li))
(define html-section (default-tag-function 'h2))
(define html-subsection (default-tag-function 'h3))
(define html-newthought (default-tag-function 'span #:class "newthought"))
|
261
262
263
264
265
266
267
|
261
262
263
264
265
266
267
|
-
+
|
(format "~a" (+ 1 fnref-num)))]] "↩"))])
`(li [[id ,(fndef-id fn-name)]] ,@definition-text ,@backrefs))))
(cond [(null? note-items) ""]
[else `(section ((class "footnotes")) (hr) (ol ,@note-items))]))
(define (html-note attrs elems)
(define (html-note-with-srcline attrs elems)
(txexpr 'note attrs (decode-hardwrapped-paragraphs elems)))
|