markdown
Description
Routine that translate HTML/XML markup from a passed string and returns markdown version.
Parameters
Return Type
String
Example
string html = "<p>Some text</p>";
string markdown = markdown(html);
print(markdown);
Routine that translate HTML/XML markup from a passed string and returns markdown version.
String
string html = "<p>Some text</p>";
string markdown = markdown(html);
print(markdown);