From a5d77546a856c913742484b7674fa0b309516bd0 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Thu, 2 Nov 2017 14:36:00 +0100 Subject: [PATCH] docgen: better space out includes --- src/scripts/elua/apps/gendoc.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/scripts/elua/apps/gendoc.lua b/src/scripts/elua/apps/gendoc.lua index 97c9715a40..7b2a776639 100644 --- a/src/scripts/elua/apps/gendoc.lua +++ b/src/scripts/elua/apps/gendoc.lua @@ -1390,6 +1390,7 @@ build_property = function(impl, cl) if (isget and gdoc:exists()) or (isset and sdoc:exists()) then f:write_nl(2) end + f:write_nl() f:write_editable(pns, "description") f:write_nl() end @@ -1405,6 +1406,7 @@ build_property = function(impl, cl) f:write_nl(2) end if isset then + f:write_nl() f:write_editable(pns, "getter_description") f:write_nl() end @@ -1418,6 +1420,7 @@ build_property = function(impl, cl) end f:write_raw(sdoc:full_get(nil, true)) if isget then + f:write_nl() f:write_editable(pns, "getter_description") f:write_nl() end @@ -1425,6 +1428,7 @@ build_property = function(impl, cl) f:write_nl() if not isget or not isset then + f:write_nl() f:write_editable(pns, "description") f:write_nl() end