Skip to content

Commit

Permalink
fix: paragraph's class was a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamatti committed Mar 17, 2024
1 parent c668a3d commit 0ca5519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def render_config_file(filename, class_prefix):
# Add text to paragraph tags
else:
if not in_paragraph_block:
output.append('<p class="container-paragraph">')
output.append(f'<p class="{class_prefix}-paragraph">')
line = line[1:].strip()
output.append(line)
in_paragraph_block = True
Expand Down

0 comments on commit 0ca5519

Please sign in to comment.