Spaces:
Sleeping
Sleeping
File size: 227 Bytes
8aa0467 |
1 2 3 4 5 6 7 8 9 10 11 |
import os
from rich.console import Console
from rich.markdown import Markdown
console = Console()
with open(os.path.expanduser('~/how_to_use_github_action_runner.md')) as f:
md = Markdown(f.read())
console.print(md)
|