6 lines
116 B
Python
6 lines
116 B
Python
import markdownx.utils
|
|
|
|
def markdownify(string):
|
|
string = markdownx.utils.markdownify(string)
|
|
return string
|