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.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 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> +<head> + <title>Lua-System docs</title> + <link rel="stylesheet" href="../ldoc.css" type="text/css" /> +</head> +<body> + +<div id="container"> + +<div id="product"> + <div id="product_logo"></div> + <div id="product_name"><big><b></b></big></div> + <div id="product_description"></div> +</div> <!-- id="product" --> + + +<div id="main"> + + +<!-- Menu --> + +<div id="navigation"> +<br/> +<h1>Lua-System</h1> + + + + +<h2>Topics</h2> +<ul class=""> + <li><strong>1. Introduction</strong></li> + <li><a href="../topics/CHANGELOG.md.html">CHANGELOG</a></li> + <li><a href="../topics/LICENSE.md.html">MIT License</a></li> +</ul> +<h2>Modules</h2> +<ul class="nowrap"> + <li><a href="../index.html">system</a></li> +</ul> + +</div> + +<div id="content"> + + +<h1>1. Introduction</h1> + +<p>luasystem is a platform independent system call library for Lua. +Supports Unix, Windows, MacOS, <code>Lua >= 5.1</code> and <code>luajit >= 2.0.0</code>.</p> + +<p>Lua is typically platform independent, but it requires adhering to very old C +standards. This in turn means that many common features (according to todays standards) +are not available. This module attempts to overcome some of those hurdles by providing +functions that cover those common needs.</p> + +<p>This is not a kitchen sink library, but a minimalistic one with a focus on platform +independence.</p> + + +</div> <!-- id="content" --> +</div> <!-- id="main" --> +<div id="about"> +<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i> +<i style="float:right;">Last updated 2023-11-15 07:42:18 </i> +</div> <!-- id="about" --> +</div> <!-- id="container" --> +</body> +</html> |