Spaces:
Running
Running
Update helper_functions_api.py
Browse files- helper_functions_api.py +3 -1
helper_functions_api.py
CHANGED
@@ -6,7 +6,9 @@ import re
|
|
6 |
import os
|
7 |
import hrequests
|
8 |
import markdown
|
9 |
-
|
|
|
|
|
10 |
|
11 |
def md_to_html(md_text):
|
12 |
html_content = markdown.markdown(md_text,extensions=["extra"])
|
|
|
6 |
import os
|
7 |
import hrequests
|
8 |
import markdown
|
9 |
+
from bs4 import BeautifulSoup
|
10 |
+
from lxml import etree
|
11 |
+
import markdown
|
12 |
|
13 |
def md_to_html(md_text):
|
14 |
html_content = markdown.markdown(md_text,extensions=["extra"])
|