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('<tr class="header">')
     for _,h in pairs(header_row) do
       add(h)
     end
     add('</tr>')
   end
   local class = "even"
   for _, row in pairs(rows) do
     class = (class == "even" and "odd") or "even"
     add('<tr class="' .. class .. '">')
     for i,c in pairs(row) do
       add('<td align="' .. html_align(aligns[i]) .. '">' .. c .. '</td>')
     end
     add('</tr>')
   end
-  add('</table')
+  add('</table>')
   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