2e404f055cc699b47719d19c9ff81682c065bb5e
lrnassar
Mon Mar 2 17:57:57 2026 -0800
Fixing a missing character in the lua rules for the docs markdown, refs #36894
diff --git docs/staticPage.lua docs/staticPage.lua
index 01bd9f45fcd..5aa4cada964 100644
--- docs/staticPage.lua
+++ docs/staticPage.lua
@@ -406,31 +406,31 @@
add('
')
end
local class = "even"
for _, row in pairs(rows) do
class = (class == "even" and "odd") or "even"
add('')
for i,c in pairs(row) do
add('| ' .. c .. ' | ')
end
add('
')
end
- add('')
return table.concat(buffer,'\n')
end
function RawInline(format, str)
if format == "html" then
return str
else
--- not sure what to do here for PDF or ebook output... ---
return str
end
end
function RawBlock(format, str)
if format == "html" then
return str