diff options
author | PhilipWitte <witte2008@gmail.com> | 2015-02-08 04:01:18 -0800 |
---|---|---|
committer | PhilipWitte <witte2008@gmail.com> | 2015-02-08 04:01:18 -0800 |
commit | 0b2a63b7bdb5d79cdef2a01aa3100a22a5b13ebc (patch) | |
tree | 9c2d74ca1b0d2375230cade7c25e450b5e584c5b /web/documentation.txt | |
parent | 5f54ccf0bd8a4465c887ed80a453b4fb56568d3b (diff) | |
download | Nim-0b2a63b7bdb5d79cdef2a01aa3100a22a5b13ebc.tar.gz |
Fixed website banner HTML & Javascript
Various website CSS improvements Added docs & learn icons Added learn articles
Diffstat (limited to 'web/documentation.txt')
-rw-r--r-- | web/documentation.txt | 61 |
1 files changed, 39 insertions, 22 deletions
diff --git a/web/documentation.txt b/web/documentation.txt index 0bb2b8a0f..c32fd35ba 100644 --- a/web/documentation.txt +++ b/web/documentation.txt @@ -6,16 +6,22 @@ Nim's Documentation Standards & Guides ------------------ - - - | `Standard Library <lib.html>`_ - | This document describes Nim's standard library. - - - | `Language Manual <manual.html>`_ - | The Nim manual is a draft that will evolve into a proper specification. - - - | `Compiler user guide <nimc.html>`_ - | The user guide lists command line arguments, special features of the - compiler, etc. + .. raw:: html + + <ul class="libraries"> + <li> + <a href="lib.html">Standard Library</a><br> + <p>This document describes Nim's standard library.</p> + </li> + <li> + <a href="manual.html">Language Manual</a><br> + <p>The Nim manual is a draft that will evolve into a proper specification.</p> + </li> + <li> + <a href="nimc.html">Compiler User-Guide</a><br> + <p>The user guide lists command line arguments, special features of the compiler, etc.</p> + </li> + </ul> .. container:: standout @@ -23,12 +29,18 @@ Nim's Documentation Tools & Features ---------------- - - | `Source code filters <filters.html>`_ - | The Nim compiler supports source code filters as a simple yet powerful - builtin templating system. + .. raw:: html - - | `Tools documentation <tools.html>`_ - | Description of some tools that come with the standard distribution. + <ul class="tools"> + <li> + <a href="filters.html">Source-Code Filters</a><br> + <p>The Nim compiler supports source code filters as a simple yet powerful builtin templating system.</p> + </li> + <li> + <a href="tools.html">Tools Documentation</a><br> + <p>Description of some tools that come with the standard distribution.</p> + </li> + </ul> .. container:: standout @@ -36,13 +48,18 @@ Nim's Documentation Internal Details ---------------- - - | `Garbage Collector <gc.html>`_ - | Additional documentation about Nim's GC and how to operate it in a - | realtime setting. - - - | `Internal documentation <intern.html>`_ - | The internal documentation describes how the compiler is implemented. Read - this if you want to hack the compiler. + .. raw:: html + + <ul class="internals"> + <li> + <a href="gc.html">Garbage Collector</a><br> + <p>Additional documentation about Nim's GC and how to operate it in a realtime setting.</p> + </li> + <li> + <a href="intern.html">Internal Documentation</a><br> + <p>The internal documentation describes how the compiler is implemented. Read this if you want to hack the compiler.</p> + </li> + </ul> Search Options |