You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
3.9 KiB
Racket
67 lines
3.9 KiB
Racket
#lang racket/base
|
|
(require (for-syntax racket/base racket/syntax) pollen/world)
|
|
|
|
(provide (all-defined-out) (all-from-out pollen/world))
|
|
|
|
(define-syntax (define+provide-module-begin-in-mode stx)
|
|
(syntax-case stx ()
|
|
[(_ mode-arg)
|
|
(with-syntax ([new-module-begin (format-id stx "new-module-begin")])
|
|
#'(begin
|
|
(provide (except-out (all-from-out racket/base) #%module-begin)
|
|
(rename-out [new-module-begin #%module-begin]))
|
|
(define-syntax (new-module-begin stx-arg)
|
|
(syntax-case stx-arg ()
|
|
[(_ body-exprs (... ...))
|
|
(syntax-protect
|
|
#'(#%module-begin
|
|
(module inner pollen/doclang-raw
|
|
;; doclang_raw is a version of scribble/doclang with the decoder disabled
|
|
;; first three lines are positional arguments for doclang-raw
|
|
doc-raw ; id of export
|
|
(λ(x) x) ; post-process function
|
|
() ; prepended exprs
|
|
|
|
;; Change behavior of undefined identifiers with #%top
|
|
;; Get project values from world
|
|
(require pollen/top pollen/world)
|
|
(provide (all-defined-out) (all-from-out pollen/top pollen/world))
|
|
|
|
body-exprs (... ...))
|
|
|
|
(require 'inner racket/list pollen/metas)
|
|
|
|
;; in an inline module, reader-here-path and parser-mode are undefined
|
|
;; (because there's no reader)
|
|
;; but they'll become tag functions courtesy of #%top
|
|
;; so that's how we can detect if they are undefined
|
|
(define here-path (if (procedure? inner:reader-here-path)
|
|
"anonymous-module"
|
|
inner:reader-here-path))
|
|
(define parser-mode (if (procedure? inner:parser-mode)
|
|
mode-arg
|
|
inner:parser-mode))
|
|
|
|
(define doc-with-metas
|
|
`(placeholder-root
|
|
,@(cons (meta 'here-path: here-path)
|
|
(if (list? doc-raw)
|
|
(dropf doc-raw (λ(i) (equal? i "\n"))) ; discard all newlines at front of file
|
|
doc-raw))))
|
|
(define-values (doc-without-metas metas) (split-metas-to-hash doc-with-metas)) ; split out the metas
|
|
|
|
;; set up the 'doc export
|
|
(require pollen/decode)
|
|
(define doc (apply (cond
|
|
[(equal? parser-mode world:mode-pagetree) (λ xs ((dynamic-require 'pollen/pagetree 'decode-pagetree) xs))]
|
|
;; 'root is the hook for the decoder function.
|
|
;; If it's not a defined identifier, it just hits #%top and becomes `(root ,@body ...)
|
|
[(equal? parser-mode world:mode-markup) root]
|
|
[(equal? parser-mode world:mode-markdown) (λ xs (apply root (apply (compose1 (dynamic-require 'markdown 'parse-markdown) string-append) (map to-string xs))))]
|
|
;; for preprocessor output, just make a string.
|
|
[else (λ xs (apply string-append (map to-string xs)))]) ; default mode is preprocish
|
|
(cdr doc-without-metas))) ;; cdr strips placeholder-root tag
|
|
|
|
;; hide the exports that were only for internal use.
|
|
(provide metas doc (except-out (all-from-out 'inner) doc-raw #%top))))]))))]))
|