Skip to content

Commit 8afb76f

Browse files
committed
Remove spaces around = for pandoc attr as html
1 parent 658a65e commit 8afb76f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quartodoc/pandoc/components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def html(self):
5959

6060
if self.classes:
6161
s = " ".join(c for c in self.classes)
62-
parts.append(f'class = "{s}"')
62+
parts.append(f'class="{s}"')
6363

6464
if self.attributes:
6565
parts.append(

0 commit comments

Comments
 (0)