phpdave11 / gofpdi

Go Free PDF Document Importer
MIT License
118 stars 59 forks source link

Fix boolean output. #44

Closed mcdee closed 2 years ago

mcdee commented 3 years ago

Boolean values were being written without a trailing space, which result in PDF output such as

\Extend[truetrue]

where it should be

\Extend[true true]

This patch addresses the issue, and fixes up a couple of formatting items for the current gofmt.

phpdave11 commented 2 years ago

Thanks for the fix, @mcdee!