(module basic (lib "new-lambda.ss" "scribblings") (require "decode.ss" "struct.ss" "config.ss" (lib "list.ss") (lib "class.ss")) (provide title section subsection subsubsection subsubsub*section include-section) (define (gen-tag content) (regexp-replace* "[^-a-zA-Z0-9_=]" (content->string content) "_")) (define (title #:tag [tag #f] #:style [style #f] . str) (let ([content (decode-content str)]) (make-title-decl (or tag (gen-tag content)) style content))) (define (section #:tag [tag #f] . str) (let ([content (decode-content str)]) (make-part-start 0 (or tag (gen-tag content)) content))) (define (subsection #:tag [tag #f] . str) (let ([content (decode-content str)]) (make-part-start 1 (or tag (gen-tag content)) content))) (define (subsubsection #:tag [tag #f] . str) (let ([content (decode-content str)]) (make-part-start 2 (or tag (gen-tag content)) content))) (define (subsubsub*section #:tag [tag #f] . str) (let ([content (decode-content str)]) (make-paragraph (list (make-element 'bold content))))) (define-syntax include-section (syntax-rules () [(_ mod) (begin (require (only mod doc)) doc)])) ;; ---------------------------------------- (provide itemize item item?) (define (itemize . items) (let ([items (filter (lambda (v) (not (whitespace? v))) items)]) (for-each (lambda (v) (unless (an-item? v) (error 'itemize "expected an item, found something else: ~e" v))) items) (make-itemization (map an-item-flow items)))) (define-struct an-item (flow)) (define (item? x) (an-item? x)) (define (item . str) (make-an-item (decode-flow str))) ;; ---------------------------------------- (provide hspace elem aux-elem italic bold tt span-class subscript superscript) (define (hspace n) (make-element 'hspace (list (make-string n #\space)))) (define (elem . str) (make-element #f (decode-content str))) (define (aux-elem . s) (make-aux-element #f (decode-content s))) (define (italic . str) (make-element 'italic (decode-content str))) (define (bold . str) (make-element 'bold (decode-content str))) (define (tt . str) (make-element 'tt (decode-content str))) (define (span-class classname . str) (make-element classname (decode-content str))) (define (subscript . str) (make-element 'subscript (decode-content str))) (define (superscript . str) (make-element 'superscript (decode-content str))) ;; ---------------------------------------- (provide index index* as-index index-section) (define (gen-target) (format "index:~s:~s" (current-seconds) (gensym))) (define (record-index word-seq element-seq tag content) (make-index-element #f (list (make-target-element #f content tag)) tag word-seq element-seq)) (define (index* word-seq content-seq . s) (let ([key (gen-target)]) (record-index word-seq content-seq key (decode-content s)))) (define (index word-seq . s) (let ([word-seq (if (string? word-seq) (list word-seq) word-seq)]) (apply index* word-seq word-seq s))) (define (as-index . s) (let ([key (gen-target)] [content (decode-content s)]) (record-index (list (content->string content)) (list (make-element #f content)) key content))) (define (index-section tag) (make-unnumbered-part tag (list "Index") #f (make-flow (list (make-delayed-flow-element (lambda (renderer sec ht) (let ([l null]) (hash-table-for-each (collected-info-info (part-collected-info (collected-info-parent (part-collected-info sec)))) (lambda (k v) (if (and (pair? k) (eq? 'index-entry (car k))) (set! l (cons (cons (cadr k) v) l))))) (let ([l (sort l (lambda (a b) (let loop ([a (cadr a)][b (cadr b)]) (cond [(null? a) #t] [(null? b) #f] [(string-ci=? (car a) (car b)) (loop (cdr a) (cdr b))] [else (string-ci