MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / markdown_to_html

Function markdown_to_html

python/interaction.py:1045–1055  ·  view source on GitHub ↗

``markdown_to_html`` converts the provided markdown to HTML :param str contents: Markdown contents to convert to HTML :rtype: str :Example: >>> markdown_to_html("##Yay") ' Yay '

(contents)

Source from the content-addressed store, hash-verified

1043
1044
1045def markdown_to_html(contents):
1046 """
1047 ``markdown_to_html`` converts the provided markdown to HTML
1048
1049 :param str contents: Markdown contents to convert to HTML
1050 :rtype: str
1051 :Example:
1052 >>> markdown_to_html("##Yay")
1053 '<h2>Yay</h2>'
1054 """
1055 return core.BNMarkdownToHTML(contents)
1056
1057
1058def show_plain_text_report(title, contents):

Callers 1

show_markdown_reportMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected