We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a4993d commit 9ea0de6Copy full SHA for 9ea0de6
1 file changed
confluence-mdx/bin/reverse_sync/reconstructors.py
@@ -488,6 +488,7 @@ def reconstruct_container_fragment(
488
emitted_body = _find_container_body(emitted_root)
489
if emitted_body is None:
490
return new_fragment
491
+ emitted_children = [c for c in emitted_body.children if isinstance(c, Tag)]
492
493
template_fragment = sidecar_block.xhtml_fragment or new_fragment
494
template_soup = BeautifulSoup(template_fragment, 'html.parser')
@@ -531,7 +532,6 @@ def reconstruct_container_fragment(
531
532
533
# 각 child 재구성
534
rebuilt_fragments = []
- emitted_children = [c for c in emitted_body.children if isinstance(c, Tag)]
535
for i, child_tag in enumerate(emitted_children):
536
if i >= len(children_meta):
537
rebuilt_fragments.append(str(child_tag))
0 commit comments