Skip to content

Commit

Permalink
Copy Parse Markdown and Generate JSON from Source Repo
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryRyumin authored and github-actions[bot] committed Feb 17, 2024
1 parent c49280c commit 2a20c7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/markdown_to_json_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ def process_markdown_file(

if table_in_file:
for row in table_in_file.find_all("tr")[1:]:
columns = row.find_all("td")
columns = row.find_all("td")[-4:]
paper_data = extract_paper_data(paper_section, columns)
if paper_data:
papers.append(paper_data)
Expand Down

0 comments on commit 2a20c7d

Please sign in to comment.