Skip to content

Commit 2f6bdde

Browse files
committed
working on pdf version transformations
1 parent 70fb928 commit 2f6bdde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

transform_book.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def transform(output_format='pdf'):
190190
all_lines = read_f.readlines()
191191

192192
with open(BASE_DIR + d + '/' + f, 'w') as write_f:
193-
for l in all_lines[8:]:
193+
for l in all_lines:
194194
for k, v in links.items():
195195
l = l.replace(k, v)
196196
if "<div class=\"well see-also\">" in l:

0 commit comments

Comments
 (0)