Differences From Artifact [1503c625ad]:
- File view/load.lua — part of check-in [5b3a03ad34] at 2020-12-25 03:59:32 on branch trunk — big ol iteration (user: lexi, size: 708) [annotate] [blame] [check-ins using]
To Artifact [f63ef60595]:
- File view/load.lua — part of check-in [d228cd7fcb] at 2020-12-28 23:42:22 on branch trunk — vastly improve the setup process (user: lexi, size: 736) [annotate] [blame] [check-ins using]
4 4 -- create templates from when we return to terra 5 5 local path = ... 6 6 local sources = { 7 7 'docskel'; 8 8 'tweet'; 9 9 'profile'; 10 10 'compose'; 11 + 11 12 'login-username'; 12 13 'login-challenge'; 14 + 15 + 'conf'; 16 + 'conf-profile'; 13 17 } 14 18 15 19 local ingest = function(filename) 16 20 local hnd = io.open(path..'/'..filename) 17 21 local txt = hnd:read('*a') 18 22 io.close(hnd) 19 23 txt = txt:gsub('([^\\])!%b[]', '%1')