proper options handling

This commit is contained in:
2026-06-04 20:17:42 +03:00
parent 21fcf6702c
commit 8b43950cce
+10 -3
View File
@@ -54,7 +54,14 @@ for index, file in ipairs(markdownFiles) do
if value:sub(value:len(), value:len()) == "\n" then if value:sub(value:len(), value:len()) == "\n" then
value = value:sub(1, value:find("\n")-1) value = value:sub(1, value:find("\n")-1)
end end
markdownFiles[index].options[i] = value local colonPos = value:find(":")
if colonPos then
local key = value:sub(1, colonPos - 1):match("^%s*(.-)%s*$")
local val = value:sub(colonPos + 1):match("^%s*(.-)%s*$")
if key and key ~= "" then
markdownFiles[index].options[key] = val
end
end
end end
else else
return print(file.filePath .. " file doesn't have a options section!") return print(file.filePath .. " file doesn't have a options section!")
@@ -90,8 +97,8 @@ for index, value in ipairs(markdownFiles) do
print(markdownFiles[index].content) print(markdownFiles[index].content)
-- print file options -- print file options
print("--- OPTIONS ---") print("--- OPTIONS ---")
for i, value in ipairs(markdownFiles[index].options) do for key, val in pairs(markdownFiles[index].options) do
print(markdownFiles[index].options[i]) print(key .. ": " .. val)
end end
print("---------------") print("---------------")
else else