aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--TODO.md17
-rwxr-xr-xnotYetAnotherWiki.lua15
2 files changed, 17 insertions, 15 deletions
diff --git a/TODO.md b/TODO.md
index 8921862..3f1d915 100644
--- a/TODO.md
+++ b/TODO.md
@@ -1,3 +1,19 @@
1Do these -
2
3Add atom feed and history for single page. Alas cgit only seems to have ATOM feed on the whole repo, not individual files.
4
5Construct a default set of menus if the menu.md / header.md fragments don't exist in each directory. Same for footer.md I guess.
6
7For such fragments, rename their results to menu.FRAGMENT. metadata.isFragment
8
9BUG - sub directories get their links screwed with extra path.
10
11Check the timestamps on the files, only update if source is newer than destination. Meh, it's already 600 times faster than the pandoc version.
12
13Contstruct metadata.webtrail in createHTML from links to index.HTML in the various bits of the path of the input file.
14
15
16
1Try out - 17Try out -
2 18
3htmx 19htmx
@@ -8,6 +24,7 @@ pandoc replacements
8cgit has Lua 24cgit has Lua
9 25
10 26
27
11User system - 28User system -
12 levels - 29 levels -
13 banned 30 banned
diff --git a/notYetAnotherWiki.lua b/notYetAnotherWiki.lua
index 1f077b5..9fa3178 100755
--- a/notYetAnotherWiki.lua
+++ b/notYetAnotherWiki.lua
@@ -1,20 +1,5 @@
1#!/usr/bin/env luajit 1#!/usr/bin/env luajit
2 2
3--[[ TODOs
4Contstruct metadata.webtrail in createHTML from links to index.HTML in the various bits of the path of the input file.
5
6Construct a default set of menus if menu.md / header.md doesn't exist in each directory.
7Same for footer.md I guess.
8
9For such fragments, rename their results to footer.FRAGMENT. metadata.isFragment
10
11BUG - sub directories get their links screwed with extra path.
12
13Check the timestamps on the files, only update if source is newer than destination. Meh, it's already 600 times faster than the pandoc version.
14
15Add atom feed and history for single page. Alas cgit only seems to have ATOM feed and commit log on the whole repo, not individual files.
16]]
17
18local lcmark = require("lcmark") 3local lcmark = require("lcmark")
19 4
20local createHTML = function(cm, file, menu) 5local createHTML = function(cm, file, menu)