selamw commited on
Commit
da2e9d7
·
verified ·
1 Parent(s): 19067cd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -29,12 +29,12 @@ def convert_to_markdown(input_text):
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
 
 
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