-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.html
81 lines (74 loc) · 2.64 KB
/
dev.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Developer Links</title>
<style>
body {
max-width: 40em;
font-size: 3em;
margin-left: 1em;
}
</style>
</head>
<body>
<h1>Developer Links</h1>
<p>
Client-side links to document files.
</p>
<h3>Index Files</h3>
<ul>
<li><a href="docs/html/index.html">docs/html/index.html</a> -- index of nim
source code docs in html</li>
<li><a href="http://localhost:6419/docs/md/index.md">docs/md/index.md</a> --
index of nim source code docs in md</li>
<li><a href="docs/html/teaFunctions.html">docs/html/teaFunctions.html
</a> -- index of statictea functions</li>
<li><a href="http://localhost:6419/docs/md/teaFunctions.md">docs/md/teaFunctions.md
</a> -- index of statictea functions</li>
<li><a href="http://localhost:6419/testfiles/stf-index.md">testfiles/stf-index.md
</a> -- index of stf test files</li>
</ul>
<h3>SVG Files</h3>
<ul>
<li><a href="docs/staticteadep.svg">docs/staticteadep.svg</a> --
dependencies between statictea modules</li>
<li><a href="docs/staticteadep2.svg">docs/staticteadep2.svg</a> --
nim modules used by statictea modules</li>
<li><a href="docs/teapotlogo.svg">docs/teapotlogo.svg</a> -- the teapot
logo</li>
</ul>
<h3>Html Templates</h3>
<ul>
<li><a href="templates/nimModuleIndex2.html">templates/nimModuleIndex2.html</a>
-- template used to create the html index to the source modules
</li>
<li><a href="templates/nimModule2.html">templates/nimModule2.html</a>
-- template used to create the html source modules docs</li>
<li><a href="templates/tea2html.html">templates/tea2html.html</a>
-- template used to convert the tea files to html</li>
</ul>
<h3>Tea Code Files</h3>
<ul>
<li><a href="docs/html/nimModuleIndex.tea.html">templates/nimModuleIndex.tea.html</a>
-- tea code used to create the nim module index
</li>
<li><a href="docs/html/dynamicFuncList.tea.html">templates/dynamicFuncList.tea.html</a>
-- tea code used to create the embedded tea function list
</li>
<li><a href="docs/html/nimModule.tea.html">templates/nimModule.tea.html</a>
-- tea code used to create the nim source module docs
</li>
<li><a href="docs/html/tea2html.tea.html">templates/tea2html.tea.html</a>
-- tea code used to convert the tea files to html
</li>
<li><a href="docs/html/teaFunctions.tea.html">templates/teaFunctions.tea.html</a>
-- tea code used to create the tea function documentation
</li>
<li><a href="docs/html/formatMarkdown.tea.html">templates/formatMarkdown.tea.html</a>
-- tea code used that formats the statictea markdown
descriptions as github markdown or html
</li>
</ul>
</body>
</html>