Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -29,12 +29,12 @@ def convert_to_markdown(input_text):
|
|
29 |
title = input_text
|
30 |
content = ""
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
|
39 |
return formatted_output.strip()
|
40 |
|
|
|
29 |
title = input_text
|
30 |
content = ""
|
31 |
|
32 |
+
# Bold the keywords
|
33 |
+
for word in bold_words:
|
34 |
+
content = content.replace(word, f'\n\n**{word}')
|
35 |
+
|
36 |
+
# Construct the Markdown output with headings
|
37 |
+
formatted_output = f"**{title}**{content}"
|
38 |
|
39 |
return formatted_output.strip()
|
40 |
|