Fix links to annotated source

This commit is contained in:
Geoffrey Booth
2016-11-15 21:37:41 -08:00
parent a95d986055
commit 7bc5b73db1
2 changed files with 30 additions and 30 deletions

View File

@@ -75,18 +75,18 @@
Annotated Source
</div>
<div class="contents menu">
<a href="documentation/docs/grammar.html">Grammar Rules &mdash; src/grammar</a>
<a href="documentation/docs/lexer.html">Lexing Tokens &mdash; src/lexer</a>
<a href="documentation/docs/rewriter.html">The Rewriter &mdash; src/rewriter</a>
<a href="documentation/docs/nodes.html">The Syntax Tree &mdash; src/nodes</a>
<a href="documentation/docs/scope.html">Lexical Scope &mdash; src/scope</a>
<a href="documentation/docs/helpers.html">Helpers &amp; Utility Functions &mdash; src/helpers</a>
<a href="documentation/docs/coffee-script.html">The CoffeeScript Module &mdash; src/coffee-script</a>
<a href="documentation/docs/cake.html">Cake &amp; Cakefiles &mdash; src/cake</a>
<a href="documentation/docs/command.html">"coffee" Command-Line Utility &mdash; src/command</a>
<a href="documentation/docs/optparse.html">Option Parsing &mdash; src/optparse</a>
<a href="documentation/docs/repl.html">Interactive REPL &mdash; src/repl</a>
<a href="documentation/docs/sourcemap.html">Source Maps &mdash; src/sourcemap</a>
<a href="v1/annotated-source/grammar.html">Grammar Rules &mdash; src/grammar</a>
<a href="v1/annotated-source/lexer.html">Lexing Tokens &mdash; src/lexer</a>
<a href="v1/annotated-source/rewriter.html">The Rewriter &mdash; src/rewriter</a>
<a href="v1/annotated-source/nodes.html">The Syntax Tree &mdash; src/nodes</a>
<a href="v1/annotated-source/scope.html">Lexical Scope &mdash; src/scope</a>
<a href="v1/annotated-source/helpers.html">Helpers &amp; Utility Functions &mdash; src/helpers</a>
<a href="v1/annotated-source/coffee-script.html">The CoffeeScript Module &mdash; src/coffee-script</a>
<a href="v1/annotated-source/cake.html">Cake &amp; Cakefiles &mdash; src/cake</a>
<a href="v1/annotated-source/command.html">"coffee" Command-Line Utility &mdash; src/command</a>
<a href="v1/annotated-source/optparse.html">Option Parsing &mdash; src/optparse</a>
<a href="v1/annotated-source/repl.html">Interactive REPL &mdash; src/repl</a>
<a href="v1/annotated-source/sourcemap.html">Source Maps &mdash; src/sourcemap</a>
</div>
</div>
</div>
@@ -249,7 +249,7 @@ cubes = (function() {
<p>
The CoffeeScript compiler is itself
<a href="documentation/docs/grammar.html">written in CoffeeScript</a>,
<a href="v1/annotated-source/grammar.html">written in CoffeeScript</a>,
using the <a href="http://jison.org">Jison parser generator</a>. The
command-line version of <code>coffee</code> is available as a
<a href="http://nodejs.org/">Node.js</a> utility. The
@@ -2281,7 +2281,7 @@ task(<span class="string">'build:parser'</span>, <span class="string">'rebuild t
<code>build</code> before <code>test</code>, you can use the <code>invoke</code> function:
<code>invoke 'build'</code>. Cake tasks are a minimal way to expose your
CoffeeScript functions to the command line, so
<a href="documentation/docs/cake.html">don't expect any fanciness built-in</a>.
<a href="v1/annotated-source/cake.html">don't expect any fanciness built-in</a>.
If you need dependencies, or async callbacks, it's best to put them in your
code itself &mdash; not the cake task.
</p>
@@ -2452,7 +2452,7 @@ task(<span class="string">'build:parser'</span>, <span class="string">'rebuild t
a headless, full-stack, faux-browser testing library for Node.js.
</li>
<li>
<b>jashkenas</b>' <a href="documentation/docs/underscore.html">Underscore.coffee</a>, a port
<b>jashkenas</b>' <a href="v1/annotated-source/underscore.html">Underscore.coffee</a>, a port
of the <a href="http://documentcloud.github.com/underscore/">Underscore.js</a>
library of helper functions.
</li>