small fixes

This commit is contained in:
vabene1111
2025-04-25 16:50:01 +02:00
parent 4a9082b70c
commit cb1d45b625
2 changed files with 11 additions and 6 deletions

View File

@@ -6,8 +6,8 @@ class StyleTreeprocessor(Treeprocessor):
def run_processor(self, node):
for child in node:
if child.tag == "table":
child.set("class", "markdown-body")
# if child.tag == "table":
# child.set("class", "markdown-body")
if child.tag == "img":
child.set("class", "img-fluid")
self.run_processor(child)