You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm playing with the resources/examples/01-parse-files example:
use v6;
use Pod::To::HTML;
put Pod::To::HTML.render(
'README.pod6'.IO,
head-fields => '<style>a { color: black }</style>',
title => 'README.pod6',
css-url => $?FILE.IO.dirname ~ '/css/style.css',
);
However, the CSS stylesheet (resources/examples/css/style.css) doesn't get included. This gets fixed by specifying the css-url pair in the signatures of the render method and passing it to pod2html.
The text was updated successfully, but these errors were encountered:
I'm playing with the
resources/examples/01-parse-files
example:However, the CSS stylesheet (
resources/examples/css/style.css
) doesn't get included. This gets fixed by specifying thecss-url
pair in the signatures of therender
method and passing it topod2html
.The text was updated successfully, but these errors were encountered: