79 lines
2.5 KiB
HTML
Executable File
79 lines
2.5 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@materializecss/materialize@2.1.1/dist/css/materialize.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
|
<link rel="stylesheet" href="../../assets/css/simpledoc.css">
|
|
<link rel="stylesheet" href="../../assets/css/prism.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/@materializecss/materialize@2.2.2/dist/js/materialize.min.js"></script>
|
|
<script>
|
|
document.documentElement.setAttribute('theme', 'light');
|
|
</script>
|
|
<script src="../../assets/js/config.js"></script>
|
|
<script src="../../assets/js/prism.js"></script>
|
|
<script src="../../assets/js/simpledoc.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>SimpleDoc - [FUNCTION NAME]</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div include-html="../../components/header.html"></div>
|
|
|
|
<main>
|
|
<section class="section section-title [COLOR]" style="border-radius: 24px; padding: 0;" id="index-banner">
|
|
<div class="row py-5">
|
|
<div class="col s12 offset-m1 center-on-small-only">
|
|
<h3 class="white-text" style="margin: 0px; padding-top: 0px; padding-bottom: 5px;">[FUNCTION NAME]</h3>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div style="margin-bottom: 40px;"></div>
|
|
|
|
<div class="container">
|
|
<p class="caption">
|
|
[Description of the function or feature goes here. Explain what it does, when to use it, and any important considerations.]
|
|
<br>
|
|
<br>
|
|
Example:
|
|
</p>
|
|
<pre><code class="language-javascript">// Your code example here
|
|
function example() {
|
|
return "Hello World";
|
|
}</code></pre>
|
|
|
|
<h5>Parameters</h5>
|
|
<table class="striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Type</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>param1</td>
|
|
<td>string</td>
|
|
<td>Description of parameter 1</td>
|
|
</tr>
|
|
<tr>
|
|
<td>param2</td>
|
|
<td>number</td>
|
|
<td>Description of parameter 2</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<h5>Returns</h5>
|
|
<p>Description of return value</p>
|
|
</div>
|
|
</main>
|
|
|
|
<div include-html="../../components/footer.html"></div>
|
|
<script>includeHTML();</script>
|
|
</body>
|
|
</html>
|