1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 04:48:52 -05:00

Remove excessive anchor links. (#1664)

This commit is contained in:
Ryan Dahl 2019-02-06 14:05:38 -05:00 committed by Bert Belder
parent ffe8f73d34
commit 2782d03b29

View file

@ -16,7 +16,7 @@
<img id="logo" src="deno_logo_2.gif" width="150" />
<!-- Logo by hashrock https://denolib.github.io/animated-deno-logo/ -->
<h1 id="deno"><a href="#deno">#</a>Deno</h1>
<h1>Deno</h1>
<p>
A new way to JavaScript
@ -85,14 +85,14 @@
<h2 id="install"><a href="#install">#</a>Install</h2>
<p id="install-shell"><a href="#install-shell">#</a>With Shell</p>
<p>With Shell</p>
<pre>curl -fL https://deno.land/x/install/install.sh | sh</pre>
<p id="install-powershell"><a href="#install-powershell">#</a>With PowerShell</p>
<p>With PowerShell</p>
<pre>iex (iwr https://deno.land/x/install/install.ps1)</pre>
<h2 id="mini-tutorial"><a href="#mini-tutorial">#</a>Mini-tutorial</h2>
<p id="try"><a href="#try">#</a>Try a Deno program. This one serves a local directory in HTTP.</p>
<p>Try a Deno program. This one serves a local directory in HTTP.</p>
<pre>
alias file_server="deno \
https://deno.land/x/http/file_server.ts --allow-net"