diff --git a/source/outputs/implementations/html.ts b/source/outputs/implementations/html.ts index 357803b..1543649 100644 --- a/source/outputs/implementations/html.ts +++ b/source/outputs/implementations/html.ts @@ -57,24 +57,6 @@ class type_output_html implements type_output : [new lib_plankton.xml.class_node_text(label)] ) ), - "group": ({"members": members}) => new lib_plankton.xml.class_node_complex( - "div", - { - "class": "sd-group", - }, - ( - members - .map( - x => this.render_object_internal( - x, - { - "depth": options.depth, - "level": options.level, - } - ) - ) - ) - ), "section": ({"title": title, "content": content}) => new lib_plankton.xml.class_node_complex( "section", { @@ -97,6 +79,24 @@ class type_output_html implements type_output ), ] ), + "group": ({"members": members}) => new lib_plankton.xml.class_node_complex( + "div", + { + "class": "sd-group", + }, + ( + members + .map( + x => this.render_object_internal( + x, + { + "depth": options.depth, + "level": options.level, + } + ) + ) + ) + ), "list": ({"items": items}) => new lib_plankton.xml.class_node_complex( "ul", {