Customizações Avançadas
Bibliotecas
Html to PDF
utilizado para criar pdf através de html atalhos /#from string /#from url métodos from string \ @param html the string containing the html \ @returns the bytes of the generated pdf htmltopdf from string(html) \ example usage local html = "\<html>\<body>\<h1>meu html em pdf\</h1>\</body>\</html>" local bytes = htmltopdf from string(html) from url \ @param url the url to get the html \ @returns the bytes of the generated pdf htmltopdf from url(url) \ example usage local bytes = htmltopdf from url("https //www google com/")