diff options
author | dvs1 | 2024-12-21 17:56:41 +1000 |
---|---|---|
committer | dvs1 | 2024-12-21 17:56:41 +1000 |
commit | 2adacbe580ae8ce68d8e48add43a812e6ae8b759 (patch) | |
tree | 0a47449c6e05c8d30db2215d9c53447b9178f936 /index.HTML | |
parent | Minor doc tweaks. (diff) | |
download | notYetAnotherWiki-2adacbe580ae8ce68d8e48add43a812e6ae8b759.zip notYetAnotherWiki-2adacbe580ae8ce68d8e48add43a812e6ae8b759.tar.gz notYetAnotherWiki-2adacbe580ae8ce68d8e48add43a812e6ae8b759.tar.bz2 notYetAnotherWiki-2adacbe580ae8ce68d8e48add43a812e6ae8b759.tar.xz |
Major rewrite, mostly of the directory scanning code.
It can now populate the links around the edges, and turn an entire
directory structure into a web site.
Diffstat (limited to 'index.HTML')
-rw-r--r-- | index.HTML | 17 |
1 files changed, 13 insertions, 4 deletions
@@ -34,16 +34,16 @@ | |||
34 | <table> | 34 | <table> |
35 | <tr> | 35 | <tr> |
36 | <td><img src="Connie_click-me.gif" alt="alt text" title="Not (Yet) (Another / A) Wiki."/></td> | 36 | <td><img src="Connie_click-me.gif" alt="alt text" title="Not (Yet) (Another / A) Wiki."/></td> |
37 | <td><a href="about/index.HTML">about</a> <a href="testing/index.HTML">testing</a> plus login and register buttons</td> | 37 | <td><a href="about/">about</a> <a href="testing/">testing</a> plus login and register buttons</td> |
38 | </tr> | 38 | </tr> |
39 | <td rowspan=0 style="background-color: rebeccapurple; text-align:left; white-space:nowrap; vertical-align:top"> | 39 | <td rowspan=0 style="background-color: rebeccapurple; text-align:left; white-space:nowrap; vertical-align:top"> |
40 | menu for the current directory | 40 | menu for the current directory |
41 | <p><a href="TODO.HTML">TODO</a></p> | 41 | <p><a href="index.HTML">index</a></p> |
42 | <p><a href="index.HTML">index</a></p> | 42 | <p><a href="TODO.HTML">TODO</a></p> |
43 | 43 | ||
44 | </td> | 44 | </td> |
45 | <td style="background-color: rebeccapurple"> | 45 | <td style="background-color: rebeccapurple"> |
46 | 👣 Web trail goes here. | 46 | 👣 |
47 | </td> | 47 | </td> |
48 | </tr> | 48 | </tr> |
49 | <tr> | 49 | <tr> |
@@ -86,6 +86,15 @@ are moved to the decumentation section, where the original participants | |||
86 | and others can polish it into proper documentation about solving what has | 86 | and others can polish it into proper documentation about solving what has |
87 | suddenly become a common problem. Every one knows where to find it, on | 87 | suddenly become a common problem. Every one knows where to find it, on |
88 | the one system. They can chat about it, on the one system.</p> | 88 | the one system. They can chat about it, on the one system.</p> |
89 | <h2>What does it do already?</h2> | ||
90 | <p>Currently it’ll scan the current directory and subdirectories rooking for | ||
91 | .md files in CommonMark syntax. This should cover some MarkDown | ||
92 | variations. Then it produces .HTML files converted from these .md files, | ||
93 | and links them all together into a web site.</p> | ||
94 | <p>git is used to store the .md files, and provides edit history. Added on | ||
95 | the footer is links to cgit, which is used to store the files in git on | ||
96 | your server. This provides acces to the source code, history, and ATOM | ||
97 | feed for the site.</p> | ||
89 | 98 | ||
90 | </div> | 99 | </div> |
91 | </main> | 100 | </main> |