-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationgood first issueGood for newcomersGood for newcomersissue:bugSomething isn't working... For use in issuesSomething isn't working... For use in issues
Description
Description of bug / unexpected behavior
This fails with ValueError: Unknown tag 'ul' on line 1 char 13
class MarkupExample(Scene):
def construct(self):
text = MarkupText("<ul>underlined</ul>")
self.add(text)Expected behavior
The docstring in the code indicates that it should produce underlined text:
manim/manim/mobject/text/text_mobject.py
Line 897 in 9a84ec6
| - ``<ul>underline</ul>`` and ``<s>strike through</s>`` |
Note that this does work:
class MarkupExample(Scene):
def construct(self):
text = MarkupText('<span underline="single">underlined</span>')
self.add(text)System specifications
Manim Community v0.18.0
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationgood first issueGood for newcomersGood for newcomersissue:bugSomething isn't working... For use in issuesSomething isn't working... For use in issues
Type
Projects
Status
🆕 New