Re: [racket-users] Package documentation category with info.rkt

2016-02-09 Thread Erik Silkensen
instead of a symbol: > > (define scribblings '(("yaml/yaml.scrbl" () ("Parsing Libraries" > > The only valid symbols are the category names listed here [1]. > > [1] http://docs.racket-lang.org/raco/setup-info.html?q=info > <http://docs.racket-lang.

Re: [racket-users] Package documentation category with info.rkt

2016-02-09 Thread Erik Silkensen
gt; On Feb 9, 2016, at 3:07 AM, Benjamin Greenman <benjaminlgreen...@gmail.com >> <mailto:benjaminlgreen...@gmail.com>> wrote: >> >> Hm. I'm not sure what's going on. >> >> If I make a package with your info file, I get no links in the docs. But >>

Re: [racket-users] Package documentation category with info.rkt

2016-02-09 Thread Erik Silkensen
your info file, I get no links in the docs. But > changing the collection to "yaml" generates documentation under the "Parsing > Libraries" category. > > Can you use "yaml" instead of 'multi ? > > On Tue, Feb 9, 2016 at 3:33 AM, Erik Silkense

[racket-users] Package documentation category with info.rkt

2016-02-08 Thread Erik Silkensen
Hi Racket users, I'm wondering how to control the documentation category for user-defined packages? For example, I've created a YAML package and would like it to show up under "Parsing Libraries". I tried setting (define scribblings '(("yaml/yaml.scrbl" () (parsing-library in info.rkt,

[racket-users] eval and set

2015-04-04 Thread Erik Silkensen
Could someone explain how this example works? $ racket Welcome to Racket v6.1.1. - (require racket/sandbox) - (define racket-eval (make-evaluator 'racket)) - (define a (racket-eval '(set 1 2 3))) - a (set 1 2 3) - (set? a) #f - (define racket-eval-again (make-evaluator 'racket)) - (equal? a