From 312b9efaa1061c2c4cad08554dbc1351c3270eef Mon Sep 17 00:00:00 2001 From: Roberto I Date: Fri, 7 Aug 2026 15:59:21 -0300 Subject: Small corrections in the manual --- manual/2html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'manual/2html') diff --git a/manual/2html b/manual/2html index 4e4de58a..f7952bd6 100755 --- a/manual/2html +++ b/manual/2html @@ -58,7 +58,7 @@ end local function compose (f,g) assert(f and g) - return function (s) return g(f(s)) end + return function (...) return g(f(...)) end end local function concat (f, g) @@ -395,9 +395,10 @@ APIEntry = function (e) local apiicmd, ne = string.match(e, "^(.-)(.*)") --io.stderr:write(e) if not apiicmd then - return antipara(Tag.hr() .. Tag.h3(a)) .. Tag.pre(h) .. e + return antipara(Tag.hr() .. Tag.h3(a)) .. Tag.pre(h, {class="api"}) .. e else - return antipara(Tag.hr() .. Tag.h3(a)) .. apiicmd .. Tag.pre(h) .. ne + return antipara(Tag.hr() .. Tag.h3(a)) .. apiicmd .. + Tag.pre(h, {class="api"}) .. ne end end, -- cgit v1.2.3-55-g6feb