Browse Source

fix bold arrow links in documentation

Falko Schindler 1 year ago
parent
commit
8c24cc82fb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      website/documentation/rendering.py

+ 2 - 2
website/documentation/rendering.py

@@ -44,9 +44,9 @@ def render_page(documentation: DocumentationPage, *, with_menu: bool = True) ->
                     description = part.description.replace('param ', '')
                     html = docutils.core.publish_parts(description, writer_name='html5_polyglot')['html_body']
                     html = apply_tailwind(html)
-                    ui.html(html)
+                    ui.html(html).classes('bold-links arrow-links')
                 else:
-                    ui.markdown(part.description)
+                    ui.markdown(part.description).classes('bold-links arrow-links')
             if part.ui:
                 part.ui()
             if part.demo: