Skip to content

Commit

Permalink
fix: [site] remove \n from meta
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidCruciani committed Feb 5, 2025
1 parent 9ead36f commit ce1750d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/mkdocs/modules/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _create_associated_metadata_entry(self):
entry += f" |-----------------------------------|-----|\n"
for meta in sorted(self.meta.keys()):
if meta not in excluded_meta:
entry += f" | {meta} | {self.meta[meta]} |\n"
entry += f" | {meta} | {self.meta[meta].replace("\n", ". ")} |\n"
return entry

def _create_related_entry(self):
Expand Down

0 comments on commit ce1750d

Please sign in to comment.