<< htmltopdf | Help tools functions | xmldocbuild >> |
html_txt = markdown(md_txt) |
status = markdown(md_filename, html_filename) |
a string: markdown text to convert.
a string: markdown filename to convert (source).
a string: html filename (destination).
a logical: html file generated or not.
markdown converts Markdown text-to-HTML.
txt = {'## Example of Markdown text';
'>Nelson supports markdown ...'};
html = markdown(txt);
filewrite([tempdir(), 'markdown_example.html'], html)
if ispc()
winopen([tempdir(), 'markdown_example.html']);
end
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET