Skip to content

Commit

Permalink
Update dict_summary.py
Browse files Browse the repository at this point in the history
  • Loading branch information
catusf authored Dec 2, 2024
1 parent 284ae15 commit 376004a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/dict_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ def generate_summary_data(dict_dir, output_dir):

def generate_markdown_table(data, files_status):
"""Generate a markdown table from the data."""
markdown = RELEASE_TEXT
markdown.extend(["| STT | Tên từ điển | Mô tả | Ngôn ngữ gốc | Ngôn ngữ đích | Tác giả/Biên tập | Nguồn | Phiên bản | Số mục từ | " + " | ".join([file['name'] for file in file_info])])
markdown = [RELEASE_TEXT]
markdown.append("| STT | Tên từ điển | Mô tả | Ngôn ngữ gốc | Ngôn ngữ đích | Tác giả/Biên tập | Nguồn | Phiên bản | Số mục từ | " + " | ".join([file['name'] for file in file_info]))
markdown.append("| --- | --- | --- | --- | --- | --- | --- | --- | --- |" + " --- |" * len(file_info))

for entry in data:
Expand Down

0 comments on commit 376004a

Please sign in to comment.