Skip to content

Commit

Permalink
fix: missing whitespace before attr_list term
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Sep 23, 2023
1 parent 7efde0e commit 1c82bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mknodes/basenodes/processors/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def run(self, text: str) -> str:
if not self.css_classes:
return text
classes = " ".join(f".{kls_name}" for kls_name in self.css_classes)
suffix = f"{{: {classes}}}"
suffix = f" {{: {classes}}}"
text += suffix
return text

Expand Down

0 comments on commit 1c82bd2

Please sign in to comment.