diff --git a/openandroidinstaller/views/step_view.py b/openandroidinstaller/views/step_view.py index 287c42ad..1e4dffbf 100644 --- a/openandroidinstaller/views/step_view.py +++ b/openandroidinstaller/views/step_view.py @@ -31,6 +31,7 @@ from styles import ( Text, + Markdown, ) from views import BaseView @@ -119,7 +120,7 @@ def check_advanced_switch(e): ) ] self.right_view.controls = [ - Text(f"{self.step.content}"), + Markdown(f"{self.step.content}"), ] # basic view depending on step.type logger.info(f"Starting step of type {self.step.type}.")