Skip to content

Commit

Permalink
This fixes #259.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmccurley committed Jul 13, 2024
1 parent 833ab1e commit 523ff3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iacrcc/parser/meta_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def parse_meta(metastr):
if index < numlines and lines[index].startswith(' '):
k,v = get_key_val(lines[index])
if k == 'subtitle':
data['subtitle'] = v
data['subtitle'] = decoder.latex_to_text(v)
index += 1
elif line.startswith('keywords:'):
data['keywords'] = [k.strip() for k in decoder.latex_to_text(line[9:].strip()).split(',')]
Expand Down

0 comments on commit 523ff3a

Please sign in to comment.