<< headcomments | Help tools functions | markdown >> |
htmltopdf(html_filename, pdf_filename) |
a string: html filename.
a string: pdf filename (destination).
htmltopdf converts html page to pdf.
txt = {'## Example of Markdown text';
'>Nelson html to pdf conversion example'};
html = markdown(txt);
f = fopen([tempdir(), 'htmltopdf_example.html'], 'wt');
fwrite(f, html);
fclose(f);
htmltopdf([tempdir(), 'htmltopdf_example.html'], [tempdir(), 'htmltopdf_example.pdf'])
if ispc()
winopen([tempdir(), 'htmltopdf_example.pdf']);
end
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET