Skip to content

Commit 02940e0

Browse files
committed
docs: add build deps
1 parent a864c8d commit 02940e0

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

racketscript-doc/info.rkt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44

55
(define deps '("base"))
66

7-
(define build-deps '())
7+
(define build-deps
8+
'("racket-doc"
9+
"scribble-lib"
10+
"racketscript-compiler"))
811

912
(define pkg-desc "Documentation for the RacketScript compiler")
1013
(define pkg-authors '(vishesh stchang))

racketscript-doc/racketscript/scribblings/ffi.scrbl

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
#lang scribble/manual
22

3-
@(require scribble/example
4-
racketscript/interop
5-
(for-label racket/base
6-
racketscript/interop))
7-
8-
@title{RacketScript-JavaScript FFI}
3+
@title[#:tag "rs-js-ffi"]{The RacketScript-JavaScript FFI}
94

105
RacketScript supports full interoperability with JavaScript. This section explains how JavaScript code is invoked in a RacketScript program.
116

12-
@section[#:tag "raw"]{The Main FFI Form}
7+
@section[#:tag "js-ffi"]{The Main FFI Form}
138

149
All JavaScript FFI calls begin with @racket[#%js-ffi], followed by a
1510
symbol indicating the JavaScript grammar production to be generated.

racketscript-doc/racketscript/scribblings/racketscript.scrbl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
(author+email "Stephen Chang" "[email protected]" #:obfuscate? #t))
1212

1313
RacketScript is an experimental lightweight Racket to JavaScript (ES6)
14-
compiler. It aim to enable users to leverage both JavaScript's and
15-
Racket's ecosystem, and make interoperability between clean and
14+
compiler. It allows programmers to use both JavaScript's and
15+
Racket's ecosystem, and makes interoperability between them clean and
1616
smooth.
1717

1818
@local-table-of-contents[]

0 commit comments

Comments
 (0)