Skip to content

Commit

Permalink
Fix nested append
Browse files Browse the repository at this point in the history
  • Loading branch information
agahkarakuzu committed Oct 27, 2023
1 parent 78f09fd commit e7a7690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/preprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,8 @@ def substitute_cite_commands(input_folder="content"):
markdown_output += f"{cleaned_paragraph}\n"

# Get rid of HTML tags
markdown_output = remove_html_tags(markdown_output)
return markdown_output
markdown_output = remove_html_tags(markdown_output)
return markdown_output

def append_bib_files(file1_path, file2_path, output_path):
# Read the contents of the first BibTeX file
Expand Down

0 comments on commit e7a7690

Please sign in to comment.