I have tried following code statements to show a URL:
#lang scribble/base
@title{Testing Hyperlinks}
@section{URLs}
Getting started: @hyperlink["https://docs.racket-lang.org/scribble/getting-started.html"]
Getting started: @hyperlink{"https://docs.racket-lang.org/scribble/getting-started.html"}
Getting started: @(hyperlink "https://docs.racket-lang.org/scribble/getting-started.html")
The html page is generating without any error with command "$ scribble hyperlinks.scrbl" but it is not displaying the URLs with any of the hyperlink statement:
Testing Hyperlinks
1 URLs
Getting started:
Getting started:
Getting started:
The generated html file contains following link:
<p>Getting started:</p><p><a href=""https://docs.racket-lang.org/scribble/getting-started.html""></a></p>
Where is the problem and how can I correct this error?