diff --git a/markitect/document_manager.py b/markitect/document_manager.py index 1a80749c..5bb7fbe2 100644 --- a/markitect/document_manager.py +++ b/markitect/document_manager.py @@ -533,6 +533,27 @@ class DocumentManager: let markitectEditor;""" + # Edit mode status and error reporting section + edit_mode_html = "" + if edit_mode: + edit_mode_html = f""" +
+
📝 Markitect Edit Mode
+
Loading edit capabilities...
+ +
""" + html_template = f""" @@ -542,33 +563,82 @@ class DocumentManager: {css_content} {default_css} {editor_css} - + + {edit_mode_html}
"""