diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2023-11-15 07:48:12 +0100 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2023-11-15 19:17:57 +0100 |
commit | 048f3cec7a18e7a28146f03c3c9e5d89d9613028 (patch) | |
tree | 41e8630938542fe1ec79ba4eff4304d85b45835e /docs/topics/01-introduction.md.html | |
parent | 5f3951a942fdc4bf489d8d590bfc891ac9548a23 (diff) | |
download | luasystem-048f3cec7a18e7a28146f03c3c9e5d89d9613028.tar.gz luasystem-048f3cec7a18e7a28146f03c3c9e5d89d9613028.tar.bz2 luasystem-048f3cec7a18e7a28146f03c3c9e5d89d9613028.zip |
chore(docs): render the documentation
Diffstat (limited to 'docs/topics/01-introduction.md.html')
-rw-r--r-- | docs/topics/01-introduction.md.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/docs/topics/01-introduction.md.html b/docs/topics/01-introduction.md.html new file mode 100644 index 0000000..2901cc9 --- /dev/null +++ b/docs/topics/01-introduction.md.html | |||
@@ -0,0 +1,70 @@ | |||
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
3 | <html> | ||
4 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | ||
5 | <head> | ||
6 | <title>Lua-System docs</title> | ||
7 | <link rel="stylesheet" href="../ldoc.css" type="text/css" /> | ||
8 | </head> | ||
9 | <body> | ||
10 | |||
11 | <div id="container"> | ||
12 | |||
13 | <div id="product"> | ||
14 | <div id="product_logo"></div> | ||
15 | <div id="product_name"><big><b></b></big></div> | ||
16 | <div id="product_description"></div> | ||
17 | </div> <!-- id="product" --> | ||
18 | |||
19 | |||
20 | <div id="main"> | ||
21 | |||
22 | |||
23 | <!-- Menu --> | ||
24 | |||
25 | <div id="navigation"> | ||
26 | <br/> | ||
27 | <h1>Lua-System</h1> | ||
28 | |||
29 | |||
30 | |||
31 | |||
32 | <h2>Topics</h2> | ||
33 | <ul class=""> | ||
34 | <li><strong>1. Introduction</strong></li> | ||
35 | <li><a href="../topics/CHANGELOG.md.html">CHANGELOG</a></li> | ||
36 | <li><a href="../topics/LICENSE.md.html">MIT License</a></li> | ||
37 | </ul> | ||
38 | <h2>Modules</h2> | ||
39 | <ul class="nowrap"> | ||
40 | <li><a href="../index.html">system</a></li> | ||
41 | </ul> | ||
42 | |||
43 | </div> | ||
44 | |||
45 | <div id="content"> | ||
46 | |||
47 | |||
48 | <h1>1. Introduction</h1> | ||
49 | |||
50 | <p>luasystem is a platform independent system call library for Lua. | ||
51 | Supports Unix, Windows, MacOS, <code>Lua >= 5.1</code> and <code>luajit >= 2.0.0</code>.</p> | ||
52 | |||
53 | <p>Lua is typically platform independent, but it requires adhering to very old C | ||
54 | standards. This in turn means that many common features (according to todays standards) | ||
55 | are not available. This module attempts to overcome some of those hurdles by providing | ||
56 | functions that cover those common needs.</p> | ||
57 | |||
58 | <p>This is not a kitchen sink library, but a minimalistic one with a focus on platform | ||
59 | independence.</p> | ||
60 | |||
61 | |||
62 | </div> <!-- id="content" --> | ||
63 | </div> <!-- id="main" --> | ||
64 | <div id="about"> | ||
65 | <i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i> | ||
66 | <i style="float:right;">Last updated 2023-11-15 07:42:18 </i> | ||
67 | </div> <!-- id="about" --> | ||
68 | </div> <!-- id="container" --> | ||
69 | </body> | ||
70 | </html> | ||