Hi Doitsu,
Would it work to put back the proper windows line endings before parsing the file?
Does this change to plugin.py work?
Code:
# process file list
for (man_id, href) in file_list:
bookpath = bk.id_to_bookpath(man_id)
print('Processing ', bookpath, '...')
data = bk.readfile(man_id)
# add back in proper windows line ends
if sys.platform.startswith('win'):
data = data.replace("\n", "\r\n")