Skip to content

Commit e81a29f

Browse files
Ian AldenIan Alden
authored andcommitted
Regenerating docs
1 parent 8d87a8a commit e81a29f

30 files changed

+53
-102
lines changed

docs/examples/mixrmastr-bartender-droid.lua.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ <h2>mixrmastr-bartender-droid.lua</h2>
147147
</div> <!-- id="main" -->
148148
<div id="about">
149149
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
150-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
150+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
151151
</div> <!-- id="about" -->
152152
</div> <!-- id="container" -->
153153
</body>

docs/examples/yatta-invisible-market.lua.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ <h2>yatta-invisible-market.lua</h2>
238238
</div> <!-- id="main" -->
239239
<div id="about">
240240
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
241-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
241+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
242242
</div> <!-- id="about" -->
243243
</div> <!-- id="container" -->
244244
</body>

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ <h2>Examples</h2>
201201
</div> <!-- id="main" -->
202202
<div id="about">
203203
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
204-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
204+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
205205
</div> <!-- id="about" -->
206206
</div> <!-- id="container" -->
207207
</body>

docs/ldoc_new.css

Lines changed: 0 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -288,70 +288,3 @@ pre .global { color: #c040c0; }
288288
pre .user-keyword { color: #800080; }
289289
pre .prompt { color: #558817; }
290290
pre .url { color: #272fc2; text-decoration: underline; }
291-
292-
@media screen and (prefers-color-scheme: dark) {
293-
/* width */
294-
::-webkit-scrollbar {
295-
width: auto;
296-
}
297-
298-
/* Track */
299-
::-webkit-scrollbar-track {
300-
box-shadow: inset 0 0 10px grey;
301-
}
302-
303-
/* Handle */
304-
::-webkit-scrollbar-thumb {
305-
background: darkgray;
306-
}
307-
308-
body {
309-
color: rgb(171, 184, 195);
310-
background: rgb(7, 2, 26);
311-
}
312-
313-
#navigation, #navigation h1, #navigation h2, #navigation h3 {
314-
background-color: rgb(7, 2, 26);
315-
color: rgb(224, 250, 247);
316-
}
317-
318-
#content table {
319-
background-color: rgb(7, 2, 26);
320-
}
321-
322-
#content h1 {
323-
color: rgb(224, 250, 247);
324-
}
325-
326-
#content h2, #content h2 a {
327-
color: rgb(224, 250, 247);
328-
background-color: rgb(62, 88, 149);
329-
}
330-
331-
#content pre {
332-
background-color: rgb(37, 39, 44);
333-
}
334-
335-
#pre {
336-
color: rgb(171, 184, 195);
337-
}
338-
339-
dl.function {
340-
background-color: rgb(7, 2, 26);
341-
}
342-
343-
table.module_list td.name, table.function_list td.name {
344-
background-color: rgb(18, 11, 44);
345-
}
346-
table.module_list td.summary, table.function_list td.summary {
347-
background-color: rgb(18, 11, 44);
348-
}
349-
350-
#about {
351-
background-color: rgb(7, 2, 26);
352-
}
353-
354-
a:target + * {
355-
background-color: rgb(220, 220, 138);
356-
}
357-
}

docs/modules/LuaDB.html

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ <h2><a href="#Functions">Functions</a></h2>
101101
<td class="summary">deletes a key/value pair.</td>
102102
</tr>
103103
<tr>
104-
<td class="name" nowrap><a href="#get">get ()</a></td>
104+
<td class="name" nowrap><a href="#get">get (key)</a></td>
105105
<td class="summary">gets the value of a given key.</td>
106106
</tr>
107107
<tr>
@@ -117,11 +117,11 @@ <h2><a href="#Functions">Functions</a></h2>
117117
<td class="summary">saves a key/value pair.</td>
118118
</tr>
119119
<tr>
120-
<td class="name" nowrap><a href="#seek">seek ()</a></td>
120+
<td class="name" nowrap><a href="#seek">seek (key)</a></td>
121121
<td class="summary">get an iterator over key/value pairs in a LuaDB, starting at the designated key.</td>
122122
</tr>
123123
<tr>
124-
<td class="name" nowrap><a href="#seekKey">seekKey ()</a></td>
124+
<td class="name" nowrap><a href="#seekKey">seekKey (key)</a></td>
125125
<td class="summary">get an iterator over keys in a LuaDB, starting at the designated key.</td>
126126
</tr>
127127
<tr>
@@ -213,12 +213,18 @@ <h3>Usage:</h3>
213213
</dd>
214214
<dt>
215215
<a name = "get"></a>
216-
<strong>get ()</strong>
216+
<strong>get (key)</strong>
217217
</dt>
218218
<dd>
219219
gets the value of a given key.
220220

221221

222+
<h3>Parameters:</h3>
223+
<ul>
224+
<li><span class="parameter">key</span>
225+
the key name (string, integer, or binary)
226+
</li>
227+
</ul>
222228

223229
<h3>Returns:</h3>
224230
<ol>
@@ -321,12 +327,18 @@ <h3>Usage:</h3>
321327
</dd>
322328
<dt>
323329
<a name = "seek"></a>
324-
<strong>seek ()</strong>
330+
<strong>seek (key)</strong>
325331
</dt>
326332
<dd>
327333
get an iterator over key/value pairs in a LuaDB, starting at the designated key.
328334

329335

336+
<h3>Parameters:</h3>
337+
<ul>
338+
<li><span class="parameter">key</span>
339+
the key name (string, integer, or binary)
340+
</li>
341+
</ul>
330342

331343
<h3>Returns:</h3>
332344
<ol>
@@ -346,12 +358,18 @@ <h3>Usage:</h3>
346358
</dd>
347359
<dt>
348360
<a name = "seekKey"></a>
349-
<strong>seekKey ()</strong>
361+
<strong>seekKey (key)</strong>
350362
</dt>
351363
<dd>
352364
get an iterator over keys in a LuaDB, starting at the designated key.
353365

354366

367+
<h3>Parameters:</h3>
368+
<ul>
369+
<li><span class="parameter">key</span>
370+
the key name (string, integer, or binary)
371+
</li>
372+
</ul>
355373

356374
<h3>Returns:</h3>
357375
<ol>
@@ -400,7 +418,7 @@ <h3>Usage:</h3>
400418
</div> <!-- id="main" -->
401419
<div id="about">
402420
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
403-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
421+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
404422
</div> <!-- id="about" -->
405423
</div> <!-- id="container" -->
406424
</body>

docs/modules/area.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ <h3>Usage:</h3>
312312
</div> <!-- id="main" -->
313313
<div id="about">
314314
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
315-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
315+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
316316
</div> <!-- id="about" -->
317317
</div> <!-- id="container" -->
318318
</body>

docs/modules/cargo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ <h3>Returns:</h3>
400400
</div> <!-- id="main" -->
401401
<div id="about">
402402
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
403-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
403+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
404404
</div> <!-- id="about" -->
405405
</div> <!-- id="container" -->
406406
</body>

docs/modules/char_proto.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ <h3>Parameters:</h3>
740740
</div> <!-- id="main" -->
741741
<div id="about">
742742
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
743-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
743+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
744744
</div> <!-- id="about" -->
745745
</div> <!-- id="container" -->
746746
</body>

docs/modules/character.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5501,7 +5501,7 @@ <h3>Returns:</h3>
55015501
</div> <!-- id="main" -->
55025502
<div id="about">
55035503
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
5504-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
5504+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
55055505
</div> <!-- id="about" -->
55065506
</div> <!-- id="container" -->
55075507
</body>

docs/modules/clan.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ <h3>Usage:</h3>
640640
</div> <!-- id="main" -->
641641
<div id="about">
642642
<i>generated by <a href="http://github.com/lunarmodules/ldoc">LDoc 1.5.0</a></i>
643-
<i style="float:right;">Last updated 2025-08-19 19:46:22 </i>
643+
<i style="float:right;">Last updated 2025-08-19 19:50:41 </i>
644644
</div> <!-- id="about" -->
645645
</div> <!-- id="container" -->
646646
</body>

0 commit comments

Comments
 (0)