diff --git a/web/assets/style.css b/web/assets/style.css index 5e2115ef13..04e7a17697 100644 --- a/web/assets/style.css +++ b/web/assets/style.css @@ -518,15 +518,15 @@ pre .end { background:url("images/tabEnd.png") no-repeat left bottom; } .standout h2 { margin-bottom:10px; padding-bottom:10px; border-bottom:1px dashed rgba(0,0,0,.8); } .standout li { margin:0 !important; padding-top:10px; border-top:1px dashed rgba(0,0,0,.2); } .standout ul { padding-bottom:5px; } - .standout ul.tools { list-style:url("images/docs-tools.png"); } - .standout ul.libraries { list-style:url("images/docs-libraries.png"); } - .standout ul.internals { list-style:url("images/docs-internals.png"); } - .standout ul.tutorials { list-style:url("images/docs-tutorials.png"); } - .standout ul.examples { list-style:url("images/docs-examples.png"); } - .standout ul.articles { list-style:url("images/docs-articles.png"); } + .standout .tools ul { list-style:url("images/docs-tools.png"); } + .standout .libraries ul { list-style:url("images/docs-libraries.png"); } + .standout .internals ul { list-style:url("images/docs-internals.png"); } + .standout .tutorials ul { list-style:url("images/docs-tutorials.png"); } + .standout .examples ul { list-style:url("images/docs-examples.png"); } + .standout .articles ul { list-style:url("images/docs-articles.png"); } .standout li:first-child { padding-top:0; border-top:none; } .standout li p { margin:0 0 10px 0 !important; line-height:130%; } - .standout li > a { font-weight:bold; } + .standout li p > a { font-weight:bold; } .forum-user-info, .forum-user-info * { cursor:help } diff --git a/web/documentation.txt b/web/documentation.txt index c32fd35bab..dbb737cd9c 100644 --- a/web/documentation.txt +++ b/web/documentation.txt @@ -6,22 +6,17 @@ Nim's Documentation Standards & Guides ------------------ - .. raw:: html + .. container:: libraries -
This document describes Nim's standard library.
-The Nim manual is a draft that will evolve into a proper specification.
-The user guide lists command line arguments, special features of the compiler, etc.
-The Nim compiler supports source code filters as a simple yet powerful builtin templating system.
-Description of some tools that come with the standard distribution.
-Additional documentation about Nim's GC and how to operate it in a realtime setting.
-The internal documentation describes how the compiler is implemented. Read this if you want to hack the compiler.
-Learn the basics of Nim's types, variables, procedures, control flow, etc...
-Learn Nim's more advanced features such as OOP, generics, macros, etc...
-Nim by Example is an excellent starting place for beginners.
-Many different Nim code examples comparable to other languages for reference.
-A useful cheat-sheet for those most familiar with C/C++ languages.
--