Using Pandoc flags for improved HTML export. CSS should support those options too.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2020-09-26 11:38:19 -05:00
parent f73ca8ef32
commit d739f3f357
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ Pandoc class >> markdownToHtml: inputFile [
outputFile ensureCreateFile.
OSSUnixSubprocess new
command: 'pandoc';
arguments: {'-f'. 'markdown'. '-t'. 'html'. inputFile fullName.
arguments: {'-f'. 'markdown+startnum+task_lists'. '-t'. 'html'. inputFile fullName.
'--output'. outputFile fullName };
redirectStdout;
redirectStderr;