Skip to content

Commit

Permalink
Don't break words across lines when filling paper abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
duetosymmetry committed Dec 10, 2024
1 parent 9042656 commit dbd6280
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _papers/inspToMd.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ def write_insp_resp_to_md(responses):
abstract_str = md['abstracts'][0]['value']
abstract_str = fill(abstract_str,
initial_indent=' ',
subsequent_indent=' ')
subsequent_indent=' ',
break_long_words=False)
with open(f"{texkey}.md", 'w') as f:
f.write(f"""---
title: "{title}"
Expand Down

0 comments on commit dbd6280

Please sign in to comment.