Spaces:
Running
Running
luanpoppe
commited on
Commit
·
0472543
1
Parent(s):
d598506
fix
Browse files- _utils/utils.py +1 -1
_utils/utils.py
CHANGED
@@ -227,7 +227,7 @@ def convert_markdown_to_HTML(text: str):
|
|
227 |
.replace("</li>", "</p>")
|
228 |
.replace("<ul>", "<div>")
|
229 |
.replace("</ul>", "</div>")
|
230 |
-
.replace("<ol>", "<div>")
|
231 |
.replace("</ol>", "</div>")
|
232 |
)
|
233 |
return html
|
|
|
227 |
.replace("</li>", "</p>")
|
228 |
.replace("<ul>", "<div>")
|
229 |
.replace("</ul>", "</div>")
|
230 |
+
.replace("<ol>", "<div>") # Removendo <ol>
|
231 |
.replace("</ol>", "</div>")
|
232 |
)
|
233 |
return html
|