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 Jan 19, 2024
1 parent a57918f commit b308669
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/markdown_to_json_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,8 @@ def parse_paper_links(html):

def extract_paper_data(paper_section, columns):
title_column = columns[0]
title = title_column.get_text(strip=True)
# title = title_column.get_text(strip=True)
title = title_column.a.encode_contents().decode("utf-8")
title_link = title_column.find("a")
title_page = title_link["href"] if title_link else None

Expand Down

0 comments on commit b308669

Please sign in to comment.