aboutsummaryrefslogtreecommitdiff
path: root/docs/installation.html
diff options
context:
space:
mode:
authorCaleb Maclennan <caleb@alerque.com>2023-11-11 08:07:36 +0300
committerCaleb Maclennan <caleb@alerque.com>2023-11-11 08:07:38 +0300
commit453a5207eda52939181233bffffa67171ef838bd (patch)
treecfdc3b5a890f2a201024688357474997a3e77c0a /docs/installation.html
parentde359ea4083ac6d944216229e4104dc36537c29c (diff)
downloadluasocket-453a5207eda52939181233bffffa67171ef838bd.tar.gz
luasocket-453a5207eda52939181233bffffa67171ef838bd.tar.bz2
luasocket-453a5207eda52939181233bffffa67171ef838bd.zip
style(docs): Trim trailing whitespace in HTML docs
Many editors remove these automatically anyway which makes opening and editng the docs cause a bunch of noise. This is just to get the noise out of the way in a style commit so it doesn't leak into other PRs
Diffstat (limited to 'docs/installation.html')
-rw-r--r--docs/installation.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/installation.html b/docs/installation.html
index 24bc1bd..25c0bba 100644
--- a/docs/installation.html
+++ b/docs/installation.html
@@ -1,11 +1,11 @@
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd"> 2 "http://www.w3.org/TR/html4/strict.dtd">
3<html> 3<html>
4 4
5<head> 5<head>
6<meta name="description" content="LuaSocket: Introduction to the core"> 6<meta name="description" content="LuaSocket: Introduction to the core">
7<meta name="keywords" content="Lua, LuaSocket, TCP, UDP, Network, Support, 7<meta name="keywords" content="Lua, LuaSocket, TCP, UDP, Network, Support,
8Installation"> 8Installation">
9<title>LuaSocket: Installation</title> 9<title>LuaSocket: Installation</title>
10<link rel="stylesheet" href="reference.css" type="text/css"> 10<link rel="stylesheet" href="reference.css" type="text/css">
11</head> 11</head>
@@ -29,7 +29,7 @@ Installation">
29<a href="index.html#download">download</a> &middot; 29<a href="index.html#download">download</a> &middot;
30<a href="installation.html">installation</a> &middot; 30<a href="installation.html">installation</a> &middot;
31<a href="introduction.html">introduction</a> &middot; 31<a href="introduction.html">introduction</a> &middot;
32<a href="reference.html">reference</a> 32<a href="reference.html">reference</a>
33</p> 33</p>
34</center> 34</center>
35<hr> 35<hr>
@@ -48,8 +48,8 @@ will likely already have been answered. </p>
48 48
49<p> On Unix systems, the standard distribution uses two base 49<p> On Unix systems, the standard distribution uses two base
50directories, one for system dependent files, and another for system 50directories, one for system dependent files, and another for system
51independent files. Let's call these directories <tt>&lt;CDIR&gt;</tt> 51independent files. Let's call these directories <tt>&lt;CDIR&gt;</tt>
52and <tt>&lt;LDIR&gt;</tt>, respectively. 52and <tt>&lt;LDIR&gt;</tt>, respectively.
53For example, in my laptp, Lua&nbsp;5.1 is configured to 53For example, in my laptp, Lua&nbsp;5.1 is configured to
54use '<tt>/usr/local/lib/lua/5.1</tt>' for 54use '<tt>/usr/local/lib/lua/5.1</tt>' for
55<tt>&lt;CDIR&gt;</tt> and '<tt>/usr/local/share/lua/5.1</tt>' for 55<tt>&lt;CDIR&gt;</tt> and '<tt>/usr/local/share/lua/5.1</tt>' for
@@ -57,9 +57,9 @@ use '<tt>/usr/local/lib/lua/5.1</tt>' for
57usually points to the directory where the Lua executable is 57usually points to the directory where the Lua executable is
58found, and <tt>&lt;LDIR&gt;</tt> points to a 58found, and <tt>&lt;LDIR&gt;</tt> points to a
59<tt>lua/</tt> directory inside <tt>&lt;CDIR&gt;</tt>. (These 59<tt>lua/</tt> directory inside <tt>&lt;CDIR&gt;</tt>. (These
60settings can be overridden by environment variables 60settings can be overridden by environment variables
61<tt>LUA_PATH</tt> and <tt>LUA_CPATH</tt>. See the Lua 61<tt>LUA_PATH</tt> and <tt>LUA_CPATH</tt>. See the Lua
62documentation for details.) Here is the standard LuaSocket 62documentation for details.) Here is the standard LuaSocket
63distribution directory structure:</p> 63distribution directory structure:</p>
64 64
65<pre class=example> 65<pre class=example>
@@ -76,7 +76,7 @@ distribution directory structure:</p>
76</pre> 76</pre>
77 77
78<p> Naturally, on Unix systems, <tt>core.dll</tt> 78<p> Naturally, on Unix systems, <tt>core.dll</tt>
79would be replaced by <tt>core.so</tt>. 79would be replaced by <tt>core.so</tt>.
80</p> 80</p>
81 81
82<h3>Using LuaSocket</h3> 82<h3>Using LuaSocket</h3>