Compare commits

...

3 Commits

Author SHA1 Message Date
Georges Dupéron
bdba7e8f43 Fixed issue with racketblock vs RACKETBLOCK (racketblock was always used) 2016-06-17 19:54:52 +02:00
Georges Dupéron
948f9adef1 Added for-syntax require in example 2016-06-17 18:23:53 +02:00
Georges Dupéron
fef49f611e Adjusted branch in README badges 2016-06-17 17:22:22 +02:00
3 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[![Build Status,](https://img.shields.io/travis/jsmaniac/hyper-literate/master.svg)](https://travis-ci.org/jsmaniac/hyper-literate)
[![Coverage Status,](https://img.shields.io/coveralls/jsmaniac/hyper-literate/master.svg)](https://coveralls.io/github/jsmaniac/hyper-literate)
[![Build Status,](https://img.shields.io/travis/jsmaniac/hyper-literate/stackoverflow-q-18877881.svg)](https://travis-ci.org/jsmaniac/hyper-literate)
[![Coverage Status,](https://img.shields.io/coveralls/jsmaniac/hyper-literate/stackoverflow-q-18877881.svg)](https://coveralls.io/github/jsmaniac/hyper-literate)
[![Build Stats.](https://img.shields.io/badge/build-stats-blue.svg)](http://jsmaniac.github.io/travis-stats/#jsmaniac/hyper-literate)
hyper-literate

View File

@ -46,6 +46,11 @@ And so does @racket[(require (submod ".." …))]:
(require (submod ".." ms2))]
@chunk[<*>
(begin
;; Wrap the require in a `(begin …)` so that it gets ignored,
;; otherwise scribble complains some identifiers are loaded twice
;; for-label.
(require (for-syntax)))
(require typed/rackunit)
<submod>
(check-equal? (+ x x) 2)

View File

@ -73,7 +73,7 @@
(list (smaller (elemref '(chunk tag) #:underline? #f
str
rest ...))))
(racketblock expr ...))))))]))
(#,racketblock expr ...))))))]))
(define-syntax chunk (make-chunk #'racketblock))
(define-syntax CHUNK (make-chunk #'RACKETBLOCK))