Skip to content

Commit

Permalink
resolves #341 identifie explicitement le fichier des métadonnées dans…
Browse files Browse the repository at this point in the history
… la ligne de commande pandoc

Sinon, Pandoc fait de la déduction et peut considérer que le fichier des métadonnées
est la suite du document Markdown si ce dernier ne contient pas de saut de ligne à la fin du fichier!!!
  • Loading branch information
ggrossetie committed Mar 20, 2021
1 parent f43dec3 commit 32b6a93
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions export/src/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ function generatePandocCommand (
)} -H ${path.join(templatesDirPath, 'preview.html')}`
}
const cslFilePath = path.join(templatesDirPath, 'chicagomodified.csl')
return `pandoc ${markdownFilePath} ${metadataFilePath} \
--bibliography ${bibliographyFilePath} \
return `pandoc ${markdownFilePath} \
--metadata-file=${metadataFilePath} \
--bibliography=${bibliographyFilePath} \
--standalone \
${templateArg} \
--section-divs \
Expand Down

0 comments on commit 32b6a93

Please sign in to comment.