diff --git a/MCServer/Plugins/APIDump/main.lua b/MCServer/Plugins/APIDump/main.lua index ab154dc45..fa9d29423 100644 --- a/MCServer/Plugins/APIDump/main.lua +++ b/MCServer/Plugins/APIDump/main.lua @@ -740,14 +740,14 @@ function WriteHtmlClass(a_ClassAPI, a_AllAPI) end if (a_InheritedName ~= nil) then - cf:write("
Name | \nParameters | \nReturn value | \nNotes | \n
---|---|---|---|
" .. func.Name .. " | \n"); - cf:write("" .. LinkifyString(func.Params or "", (a_InheritedName or a_ClassAPI.Name)).. " | \n"); - cf:write("" .. LinkifyString(func.Return or "", (a_InheritedName or a_ClassAPI.Name)).. " | \n"); - cf:write("" .. LinkifyString(func.Notes or "(undocumented)", (a_InheritedName or a_ClassAPI.Name)) .. " | \n", LinkifyString(func.Params or "", (a_InheritedName or a_ClassAPI.Name)), " | \n"); + cf:write("", LinkifyString(func.Return or "", (a_InheritedName or a_ClassAPI.Name)), " | \n"); + cf:write("", LinkifyString(func.Notes or "(undocumented)", (a_InheritedName or a_ClassAPI.Name)), " | \n \n"); end cf:write("
Name | \nValue | \nNotes | \n
---|---|---|
" .. cons.Name .. " | \n"); - cf:write("" .. cons.Value .. " | \n"); - cf:write("" .. LinkifyString(cons.Notes or "", a_InheritedName or a_ClassAPI.Name) .. " | \n
", cons.Name, " | \n"); + cf:write("", cons.Value, " | \n"); + cf:write("", LinkifyString(cons.Notes or "", a_InheritedName or a_ClassAPI.Name), " | \n
Name | \nType | \nNotes | \n
---|---|---|
" .. var.Name .. " | \n"); - cf:write("" .. LinkifyString(var.Type or "(undocumented)", a_InheritedName or a_ClassAPI.Name) .. " | \n"); - cf:write("" .. LinkifyString(var.Notes or "", a_InheritedName or a_ClassAPI.Name) .. " | \n
", var.Name, " | \n"); + cf:write("", LinkifyString(var.Type or "(undocumented)", a_InheritedName or a_ClassAPI.Name), " | \n"); + cf:write("", LinkifyString(var.Notes or "", a_InheritedName or a_ClassAPI.Name), " | \n