Skip to content

Commit

Permalink
Enable basic markdown highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
tsterbak committed May 1, 2023
1 parent 076b060 commit 5c10c71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openandroidinstaller/views/step_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

from styles import (
Text,
Markdown,
)

from views import BaseView
Expand Down Expand Up @@ -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}.")
Expand Down

0 comments on commit 5c10c71

Please sign in to comment.