Skip to content

Commit

Permalink
Table tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ounsworth committed Jul 22, 2024
1 parent 7981b6f commit c1030a4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pqc_report_writer_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ def main():

md_file.new_paragraph(text="<style> table { border-collapse: collapse; } th, td { border: solid black 1px; padding: 0 1ex; } </style>")

md_file.new_paragraph(text='In the individual algorithm tables below, Rows are producers. Columns are parsers.\n')


md_file.new_header(level=1, title=f'Algorithms Submitted')
Expand Down Expand Up @@ -224,6 +223,7 @@ def main():
alg_name = _get_alg_name_by_oid_str(oid_name_mappings, alg_oid)

md_file.new_header(level=1, title=f'{alg_name} ({alg_oid})')
md_file.new_paragraph(text='Rows are producers. Columns are parsers.\n')

cells = ['-'] + verifiers
for generator in generators:
Expand All @@ -245,7 +245,6 @@ def main():

md_file.new_table(columns=len(verifiers) + 1, rows=len(generators) + 1, text=cells, text_align='left')

md_file.new_table_of_contents(table_title='Algorithms', depth=1)
md_file.create_md_file()


Expand Down

0 comments on commit c1030a4

Please sign in to comment.