add REPL support for pollen-style expressions
parent
729062d28c
commit
877d3580dd
@ -1,26 +1,33 @@
|
|||||||
#lang racket/base
|
#lang racket/base
|
||||||
|
(require pollen/setup scribble/reader)
|
||||||
(provide configure)
|
(provide configure)
|
||||||
|
(module+ show (provide show)) ; `show` submodule requested by module wrapper in "reader-base.rkt"
|
||||||
|
|
||||||
(module show racket/base
|
(define current-top-path (make-parameter #f))
|
||||||
(require pollen/setup)
|
|
||||||
(provide show show-enabled)
|
|
||||||
|
|
||||||
(define show-enabled (make-parameter #f))
|
(define (show doc parser-mode here-path)
|
||||||
|
;; we only want the top doc to print in the runtime environment
|
||||||
(define (show doc parser-mode here-path)
|
;; otherwise if a Pollen source imports others, they will all print their docs in sequence.
|
||||||
;; we only want the top doc to print in the runtime environment
|
;; so only print if the current here-path is the top path, which is stored in the `current-top-path` parameter.
|
||||||
;; otherwise if a Pollen source imports others, they will all print their docs in sequence.
|
(let ([ctp (current-top-path)])
|
||||||
;; so only print if the current here-path is the top path, which is stored in the `show-enabled` parameter.
|
(when (and ctp (equal? here-path ctp))
|
||||||
(when (and (show-enabled) (equal? here-path (show-enabled)))
|
(if (memq parser-mode (list default-mode-preproc default-mode-template))
|
||||||
(if (or (eq? parser-mode default-mode-preproc)
|
|
||||||
(eq? parser-mode default-mode-template))
|
|
||||||
(display doc)
|
(display doc)
|
||||||
;; OK to use dynamic-require because runtime-config itself is dynamic-required
|
;; OK to use dynamic-require because runtime-config itself is dynamic-required
|
||||||
(print (with-handlers ([exn:fail? (λ(exn) ((error '|pollen markup error| ((dynamic-require 'racket/string 'string-join) (cdr ((dynamic-require 'racket/string 'string-split) (exn-message exn) ": ")) ": "))))])
|
(print (with-handlers ([exn:fail? (λ(exn) ((error '|pollen markup error|
|
||||||
|
((dynamic-require 'racket/string 'string-join) (cdr ((dynamic-require 'racket/string 'string-split) (exn-message exn) ": ")) ": "))))])
|
||||||
((dynamic-require 'txexpr/base 'validate-txexpr) doc)))))))
|
((dynamic-require 'txexpr/base 'validate-txexpr) doc)))))))
|
||||||
|
|
||||||
(require 'show)
|
|
||||||
|
|
||||||
(define (configure top-here-path)
|
(define (configure top-here-path)
|
||||||
(show-enabled top-here-path))
|
;; puts `show` into the right mode
|
||||||
|
(current-top-path top-here-path)
|
||||||
|
|
||||||
|
;; wrap REPL interactions with pollen expression support
|
||||||
|
(define old-read (current-read-interaction))
|
||||||
|
(define pollen-readtable (make-at-readtable #:command-char (setup:command-char)))
|
||||||
|
(define (new-read src in)
|
||||||
|
(parameterize ([current-readtable pollen-readtable])
|
||||||
|
(old-read src in)))
|
||||||
|
(current-read-interaction new-read))
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
1483835443
|
1484772880
|
||||||
|
Loading…
Reference in New Issue