diff options
-rwxr-xr-x | notYetAnotherWiki.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/notYetAnotherWiki.lua b/notYetAnotherWiki.lua index e1b1c37..e389e74 100755 --- a/notYetAnotherWiki.lua +++ b/notYetAnotherWiki.lua | |||
@@ -15,7 +15,7 @@ local RE = require("re") -- Part of lpeg. https://www.inf.puc-rio.br/~roberto/ | |||
15 | -- Some global data. | 15 | -- Some global data. |
16 | 16 | ||
17 | local GlobalMetaData = { | 17 | local GlobalMetaData = { |
18 | dlr = '$', perc = '%', | 18 | dlr = '$', perc = '%', dot = '.', |
19 | devuanCinnabarDark = '#310202', devuanCinnabarLight = '#510505', | 19 | devuanCinnabarDark = '#310202', devuanCinnabarLight = '#510505', |
20 | devuanDarkPurpyDark = '#33313b', devuanDarkPurpyLight = '#3c3a45', | 20 | devuanDarkPurpyDark = '#33313b', devuanDarkPurpyLight = '#3c3a45', |
21 | devuanDeepSeaDark = '#132f40', devuanDeepSeaLight = '#1a4562', | 21 | devuanDeepSeaDark = '#132f40', devuanDeepSeaLight = '#1a4562', |
@@ -826,7 +826,7 @@ for name, file in pairs(Files) do | |||
826 | -- Toss the body in first, so the scan can deal with it to. | 826 | -- Toss the body in first, so the scan can deal with it to. |
827 | -- NOTE - this is where we actually parse the markup into HTML. | 827 | -- NOTE - this is where we actually parse the markup into HTML. |
828 | Context = file | 828 | Context = file |
829 | body = RE.gsub(body, '{[%nl]^1[%a]+}[.]^1 ', '%1. ') -- Coz otherwise stray . trip up the list detection. | 829 | body = RE.gsub(body, '{[%nl]^1[%a]+}[.]^1 ', '%1$dot$ ') -- Coz otherwise stray . trip up the list detection. |
830 | local bd, md = Parse(body) -- The md is a table of extracted metadata, not likely to be any, and we wont do anything with it. | 830 | local bd, md = Parse(body) -- The md is a table of extracted metadata, not likely to be any, and we wont do anything with it. |
831 | bd = RE.gsub(bd, '{[%]}', '$perc$') -- Coz otherwise stray % trip up the capture part. | 831 | bd = RE.gsub(bd, '{[%]}', '$perc$') -- Coz otherwise stray % trip up the capture part. |
832 | temp = RE.gsub(temp, '"$body$"', bd) | 832 | temp = RE.gsub(temp, '"$body$"', bd) |