Re-generate HTML docs

master
Jordan Irwin 2021-07-04 16:56:01 -07:00
parent 8a8ec585ae
commit 3613fa8c30
6 changed files with 91 additions and 8 deletions

View File

@ -33,6 +33,7 @@
<h2>Modules</h2>
<ul class="nowrap">
<li><a href="modules/api.lua.html">api.lua</a></li>
<li><a href="modules/chat.lua.html">chat.lua</a></li>
<li><a href="modules/formspec.lua.html">formspec.lua</a></li>
<li><a href="modules/settings.lua.html">settings.lua</a></li>
</ul>
@ -49,6 +50,10 @@
<td class="name" nowrap><a href="modules/api.lua.html">api.lua</a></td>
<td class="summary">Personal Bookmarks API</td>
</tr>
<tr>
<td class="name" nowrap><a href="modules/chat.lua.html">chat.lua</a></td>
<td class="summary">Personal Bookmarks Chat Commands</td>
</tr>
<tr>
<td class="name" nowrap><a href="modules/formspec.lua.html">formspec.lua</a></td>
<td class="summary">Personal Bookmarks Formspec</td>
@ -63,7 +68,7 @@
</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 2021-07-04 12:32:22 </i>
<i style="float:right;">Last updated 2021-07-04 16:47:29 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>

View File

@ -4,9 +4,10 @@ format = "markdown"
not_luadoc = true
boilerplate = false
file = {"settings.lua", "api.lua", "formspec.lua",}
file = {"settings.lua", "api.lua", "formspec.lua", "chat.lua"}
new_type("setting", "Settings")
new_type("chatcmd", "Chat Commands")
custom_tags = {
{

View File

@ -41,6 +41,7 @@
<h2>Modules</h2>
<ul class="nowrap">
<li><strong>api.lua</strong></li>
<li><a href="../modules/chat.lua.html">chat.lua</a></li>
<li><a href="../modules/formspec.lua.html">formspec.lua</a></li>
<li><a href="../modules/settings.lua.html">settings.lua</a></li>
</ul>
@ -219,7 +220,7 @@
</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 2021-07-04 12:32:22 </i>
<i style="float:right;">Last updated 2021-07-04 16:47:29 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>

View File

@ -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>Personal Bookmarks</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>pbmarks</h1>
<ul>
<li><a href="../api.html">Index</a></li>
</ul>
<h2>Modules</h2>
<ul class="nowrap">
<li><a href="../modules/api.lua.html">api.lua</a></li>
<li><strong>chat.lua</strong></li>
<li><a href="../modules/formspec.lua.html">formspec.lua</a></li>
<li><a href="../modules/settings.lua.html">settings.lua</a></li>
</ul>
</div>
<div id="content">
<h1>Module <code>chat.lua</code></h1>
<p>Personal Bookmarks Chat Commands</p>
<p>
</p>
<br/>
<br/>
</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 2021-07-04 16:47:29 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
</html>

View File

@ -40,6 +40,7 @@
<h2>Modules</h2>
<ul class="nowrap">
<li><a href="../modules/api.lua.html">api.lua</a></li>
<li><a href="../modules/chat.lua.html">chat.lua</a></li>
<li><strong>formspec.lua</strong></li>
<li><a href="../modules/settings.lua.html">settings.lua</a></li>
</ul>
@ -62,7 +63,7 @@
<td class="summary">Retrieves formspec formatted string for this mod.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#pbmarks.show_formspec">pbmarks.show_formspec (pname)</a></td>
<td class="name" nowrap><a href="#pbmarks.show_formspec">pbmarks.show_formspec (pname, flags)</a></td>
<td class="summary">Displays formspec for managing bookmarks.</td>
</tr>
</table>
@ -88,7 +89,7 @@
- noversion (boolean) no formspec version (overrides "version")
- width (number) formspec width
- height (number) formspec height
- noback (boolean) disable "back" button
- noback (boolean) show "close" button instead of "back"
</code></pre>
@ -121,7 +122,7 @@
</dd>
<dt>
<a name = "pbmarks.show_formspec"></a>
<strong>pbmarks.show_formspec (pname)</strong>
<strong>pbmarks.show_formspec (pname, flags)</strong>
</dt>
<dd>
Displays formspec for managing bookmarks.
@ -135,6 +136,10 @@
<span class="types"><a class="type" href="https://www.lua.org/manual/5.3/manual.html#6.4">string</a></span>
Player name referenced for bookmarks &amp; who will be shown formspec.
</li>
<li><span class="parameter">flags</span>
<span class="types"><a class="type" href="https://www.lua.org/manual/5.3/manual.html#6.6">table</a></span>
see: <a href="../modules/formspec.lua.html#pbmarks.get_formspec">pbmarks.get_formspec</a>
</li>
</ul>
@ -149,7 +154,7 @@
</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 2021-07-04 12:32:22 </i>
<i style="float:right;">Last updated 2021-07-04 16:47:29 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>

View File

@ -40,6 +40,7 @@
<h2>Modules</h2>
<ul class="nowrap">
<li><a href="../modules/api.lua.html">api.lua</a></li>
<li><a href="../modules/chat.lua.html">chat.lua</a></li>
<li><a href="../modules/formspec.lua.html">formspec.lua</a></li>
<li><strong>settings.lua</strong></li>
</ul>
@ -133,7 +134,7 @@
</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 2021-07-04 12:32:22 </i>
<i style="float:right;">Last updated 2021-07-04 16:47:29 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>