From fcc6ef114a368396e32779ac174a1dffad3e07d1 Mon Sep 17 00:00:00 2001 From: murat Date: Tue, 16 Jun 2026 21:05:00 +0300 Subject: [PATCH] chore: remove unused variables --- luago.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/luago.lua b/luago.lua index 2efd524..7a90d18 100644 --- a/luago.lua +++ b/luago.lua @@ -109,8 +109,6 @@ end -- get index.html content local indexFile = io.open("index.html"):read("*all") -local siteName -local siteTitle -- remove and create "public/" directory lfs.rmdir("public") @@ -239,7 +237,6 @@ for index, _ in ipairs(markdownFiles) do s = s:gsub("`(.-)`", "%1") -- horizontal rule s = s:gsub("%-%-%-", "
") - -- TODO: p for normal text return s end