Abstracting the PDF exportation process (thanks Edu!).

This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-11-30 21:20:01 +00:00 committed by SantiagoBragagnolo
parent eee20f4fd8
commit 29b6b23f21
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ GrafoscopioNotebook >> exportAsPDF [
pandocCommand := 'cd ', self markdownFile parent fullName,'; ',
'pandoc ', self pandocOptionsComputed, ' ',
self markdownFile fullName, ' -o ', self pdfFile fullName.
ExternalUnixOSProcess command: pandocCommand.
ExternalOSProcess command: pandocCommand.
self inform: ('File exported as: ', String cr, self pdfFile fullName)
]