Explanation of pull request:
This pull request is needed because Pandoc and Liblouis can only understand the UTF-8 character encoding. As a consequence, if you feed in an Unicode-encoded file, for example, both Pandoc and Liblouis will throw errors.
What this pull request does:
Adds Utf8n.exe from Jamal Mazrui's EasyEncode project. This executable takes an input, and reencodes as UTF-8 without the leading byte order mark (BOM). This executable is necessary to add UTF-8 reencoding functionality to send-to-braille.
Modifies lt.bat and lt1.bat to use the UTF-8 encoded file from Utf8n:
Creates a temporary UTF-8 file in the %temp% directory.
Runs the conversion command, passing through the UTF-8-encoded file rather than %1.
Deletes the temporary file.
The above is necessary to avoid modifying the original source file in any way.
Explanation of pull request: This pull request is needed because Pandoc and Liblouis can only understand the UTF-8 character encoding. As a consequence, if you feed in an Unicode-encoded file, for example, both Pandoc and Liblouis will throw errors.
What this pull request does: