-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python: Generate a bilingual HTML ebook
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Script to convert a JSON file with bilingual text into an interlinear HTML | ||
# "ebook". | ||
# | ||
# Input file format is [JSON Lines](https://jsonlines.org/), where each line is | ||
# a JSON array with two strings: the foreign language text and the native | ||
# language text. | ||
# | ||
# The input was generated using a custom | ||
# [Bertalign](https://github.com/bfsujason/bertalign) notebook. | ||
|
||
import json | ||
import re | ||
import sys | ||
|
||
CHAPTER_REGEX = r"Chapter " | ||
|
||
def escape_html(text): | ||
html_escape_table = { | ||
"&": "&", | ||
'"': """, | ||
"'": "'", | ||
">": ">", | ||
"<": "<", | ||
} | ||
return "".join(html_escape_table.get(c, c) for c in text) | ||
|
||
def process_ebook(input_file, output_file): | ||
with open(input_file, 'r', encoding='utf-8') as infile, open(output_file, 'w', encoding='utf-8') as outfile: | ||
outfile.write('<!DOCTYPE html>\n<html>\n<head>\n<meta charset="UTF-8">\n') | ||
|
||
for i, line in enumerate(infile): | ||
data = json.loads(line) | ||
spanish_text, english_text = data | ||
spanish_text = escape_html(spanish_text) | ||
english_text = escape_html(english_text) | ||
|
||
if i == 0: | ||
outfile.write(f'<title>{spanish_text} / {english_text}</title>\n</head>\n<body>\n') | ||
outfile.write(f'<h1>{spanish_text} / <i>{english_text}</i></h1>\n\n') | ||
elif re.match(CHAPTER_REGEX, english_text): | ||
outfile.write(f'<h2>{spanish_text} / <i>{english_text}</i></h2>\n\n') | ||
else: | ||
outfile.write(f'<p>{spanish_text}<br>\n<i>{english_text}</i></p>\n\n') | ||
|
||
outfile.write('</body>\n</html>') | ||
|
||
if __name__ == '__main__': | ||
if len(sys.argv) != 3: | ||
print("Usage: python bilingual-ebook.py input.jsonl out.html") | ||
sys.exit(1) | ||
|
||
input_file = sys.argv[1] | ||
output_file = sys.argv[2] | ||
process_ebook(input_file, output_file) |