Re: [racket-users] Is it possible with Scrible's @hyperlink, to open the linked document in a new webpage?

2017-06-22 Thread E . Cómer
On Wednesday, June 21, 2017 at 10:27:38 PM UTC-7, Ben Greenman wrote: > #lang scribble/manual > @require[ >   (only-in scribble/core style) >   (only-in scribble/html-properties attributes)] > > > @(define new-window-style >    (style #f (list (attributes '((target . "_blank")) > > >

Re: [racket-users] Is it possible with Scrible's @hyperlink, to open the linked document in a new webpage?

2017-06-21 Thread Ben Greenman
#lang scribble/manual @require[ (only-in scribble/core style) (only-in scribble/html-properties attributes)] @(define new-window-style (style #f (list (attributes '((target . "_blank")) @hyperlink[#:style new-window-style "https://www.racket-lang.org"]{Racket} On Tue, Jun 20, 2017

[racket-users] Is it possible with Scrible's @hyperlink, to open the linked document in a new webpage?

2017-06-20 Thread E . Cómer
Hi friends: Could someone share a way to use @hyperlink of the Scribble/manual language, in order to open the linked document in a new webpage or window (instead of using the current scribble document page)? Thank you very much in advance, and congratulations for constantly improving the