``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)
| 1043 | |
| 1044 | |
| 1045 | def 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 | |
| 1058 | def show_plain_text_report(title, contents): |
no outgoing calls
no test coverage detected