Skip to content

Commit

Permalink
Replace wbr tag with hopefully more GitHub-friendly option
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminPelletier committed Sep 12, 2023
1 parent a84b2e5 commit 5aff240
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def make_test_suite_documentation(
req_md_path = os.path.relpath(
req_ids_by_package[package][0].md_file_path(), start=base_path
)
package_caption = ".<wbr>".join(package.split("."))
package_caption = "&#8203;.".join(package.split("."))
package_line = f' <td rowspan="{len(req_ids_by_package[package])}" style="vertical-align:top;"><a href="{req_md_path}">{package_caption}</a></td>'
for req_id in sorted(req_ids_by_package[package]):
req_text = f'<a href="{req_md_path}">{req_id.requirement_name()}</a>'
Expand Down

0 comments on commit 5aff240

Please sign in to comment.