Re: [racket-users] Is there a webview for Racket?

2019-09-14 Thread Neil Van Dyke
Hi, Andre.  For your RSS reader, you're only displaying the RSS items themselves, not browsing to arbitrary other Web pages within the same Racket window, right? For very plain HTML, one thing I would hesitate to use is the *very old* and *possibly insecure* GUI thing, but it might work for

[racket-users] Is there a webview for Racket?

2019-09-14 Thread Andre Garzia
Hi Friends, I was building a little RSS feed reader here when I noticed that I don't know of any webview package to be used from Racket. My search on the package catalog returned nothing. Is there a webview for Racket? How should I display HTML? I'd really appreciate any help, even if just

[racket-users] scribble defproc looses parenthesis

2019-09-14 Thread Jos Koot
Hi File bug.rkt #lang racket (define (make-proc) (λ (x (y #f)) (void))) (provide make-proc) File bug.scrbl #lang scribble/manual @(require scribble/core scribble/eval racket "bug.rkt" (for-label racket "bug.rkt") (for-syntax racket)) @(defmodule "bug.rkt"