add render method

This commit is contained in:
Nathan McCarty 2025-02-03 20:41:31 -05:00
parent 6d9e32bb12
commit 72607c7f25
4 changed files with 22 additions and 0 deletions

View file

@ -15,3 +15,8 @@ has Bool:D $.markdown = True;
method title(--> Str:D) {
markdown-title($!source)
}
# Simply provide our source file to pandoc
method render-html(--> Str:D) {
die "Not implemented";
}