Skip to content

Commit

Permalink
Fixed bugged header with broken paragraph tag :(
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumbagel committed Mar 21, 2024
1 parent df84467 commit c9d77d0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def generate_text(variables):


def generate_header(variables):
return OPTIONAL_HEADER_TEMPLATE.replace("NAME", markdown_text_parsing(variables["name"])).replace("ICON",
return OPTIONAL_HEADER_TEMPLATE.replace("NAME", markdown_text_parsing(variables["name"]).replace("<p>", "")).replace("ICON",
variables["icon"])


Expand Down
Loading

0 comments on commit c9d77d0

Please sign in to comment.