Spaces:
Sleeping
Sleeping
Update app_logic.py
Browse files- app_logic.py +1 -1
app_logic.py
CHANGED
@@ -97,7 +97,7 @@ def parse_markdown(markdown_input):
|
|
97 |
space_info = {"repo_name_md": "", "owner_md": "", "files": []}
|
98 |
current_file_path = None; current_file_content_lines = []
|
99 |
in_file_definition = False; in_code_block = False
|
100 |
-
|
101 |
lines = markdown_input.strip().split("\n")
|
102 |
|
103 |
for line_content_orig in lines:
|
|
|
97 |
space_info = {"repo_name_md": "", "owner_md": "", "files": []}
|
98 |
current_file_path = None; current_file_content_lines = []
|
99 |
in_file_definition = False; in_code_block = False
|
100 |
+
markdown_input = process_commented_markdown(markdown_input)
|
101 |
lines = markdown_input.strip().split("\n")
|
102 |
|
103 |
for line_content_orig in lines:
|