diff options
author | Chris Lattner <sabre@nondot.org> | 2007-11-05 19:06:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-11-05 19:06:59 +0000 |
commit | 128eb863dfb242aac982b505a9aab06dc35be8d1 (patch) | |
tree | b571b5ba6cdec361738bf2dc78b0b95210ec41bd /docs/tutorial/LangImpl1.html | |
parent | 8699a97a2ef42d349c9b81317d55ff621c459adc (diff) | |
download | external_llvm-128eb863dfb242aac982b505a9aab06dc35be8d1.zip external_llvm-128eb863dfb242aac982b505a9aab06dc35be8d1.tar.gz external_llvm-128eb863dfb242aac982b505a9aab06dc35be8d1.tar.bz2 |
add table of contents to each chapter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43723 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl1.html')
-rw-r--r-- | docs/tutorial/LangImpl1.html | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/docs/tutorial/LangImpl1.html b/docs/tutorial/LangImpl1.html index 6325d3c..8d96750 100644 --- a/docs/tutorial/LangImpl1.html +++ b/docs/tutorial/LangImpl1.html @@ -13,6 +13,16 @@ <div class="doc_title">Kaleidoscope: The basic language, with its lexer</div> +<ul> +<li>Chapter 1 + <ol> + <li><a href="#intro">Tutorial Introduction</a></li> + <li><a href="#language">The Basic Language</a></li> + <li><a href="#lexer">The Lexer</a></li> + </ol> +</li> +</ul> + <div class="doc_author"> <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a></p> </div> @@ -32,7 +42,7 @@ can extend to other languages and to play with other things. </div> <!-- *********************************************************************** --> -<div class="doc_section"><a name="language">The basic language</a></div> +<div class="doc_section"><a name="language">The Basic Language</a></div> <!-- *********************************************************************** --> <div class="doc_text"> @@ -99,7 +109,7 @@ a lot of fun to play with languages!</p> </div> <!-- *********************************************************************** --> -<div class="doc_section"><a name="language">The Lexer</a></div> +<div class="doc_section"><a name="lexer">The Lexer</a></div> <!-- *********************************************************************** --> <div class="doc_text"> |