bugfix: uneccesary render of subtoc

This commit is contained in:
mikerambil
2025-07-10 20:34:59 -05:00
parent ee632a3943
commit 8fccc43e4e

View File

@@ -236,7 +236,6 @@ function generateContentFile(obj, idx, tocData) {
if (obj.links) md += renderLinks(obj.links);
if (obj.related_commands) md += renderRelatedCommands(obj.related_commands);
if (obj.output_example) md += renderOutputExample(obj.output_example);
if (obj.subtoc) md += renderSubtoc(obj.subtoc);
md += conciseMetaLine(obj.author, obj.last_updated, obj.tags);
return md;
}