Skip to content

Commit 5c10c71

Browse files
committed
Enable basic markdown highlighting
1 parent 076b060 commit 5c10c71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

openandroidinstaller/views/step_view.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
from styles import (
3333
Text,
34+
Markdown,
3435
)
3536

3637
from views import BaseView
@@ -119,7 +120,7 @@ def check_advanced_switch(e):
119120
)
120121
]
121122
self.right_view.controls = [
122-
Text(f"{self.step.content}"),
123+
Markdown(f"{self.step.content}"),
123124
]
124125
# basic view depending on step.type
125126
logger.info(f"Starting step of type {self.step.type}.")

0 commit comments

Comments
 (0)