Render POD documents to HTML, PDF or MD
use Pod::Render; my Pod::Render $pr .= new; $pr.render( 'html', 'my-excellent-pod-document.pod6');
multi method render ( 'html', Str:D $pod-file ) multi method render ( 'pdf', Str:D $pod-file ) multi method render ( 'md', Str:D $pod-file )
Render the document given by $pod-file
to one of the output formats html, pdf or markdown. To generate pdf the program prince
is used so that program must be installed. The style is one of the following styles; pod6, default, desert, doxy, sons-of-obsidian or sunburst.