Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

tui: render markdown in quotes

+12 -3
+11 -2
tui/app.tcss
··· 211 211 } 212 212 213 213 Post MarkdownH1, 214 - Post MarkdownH2, 214 + Post MarkdownH2 { 215 + content-align: left middle; 216 + color: #e5e5e5; 217 + background: transparent; 218 + border: none; 219 + margin: 1 0 0 0; 220 + text-style: bold; 221 + } 222 + 215 223 Post MarkdownH3, 216 224 Post MarkdownH4 { 217 225 content-align: left middle; 218 - color: #e5e5e5; 226 + color: #a3a3a3; 219 227 background: transparent; 220 228 margin: 1 0 0 0; 229 + text-style: bold; 221 230 } 222 231 223 232 Post MarkdownBlockQuote {
+1 -1
tui/widgets/post.py
··· 111 111 if self._title: 112 112 yield Static(self._title, classes="post-title", markup=False) 113 113 if self._quote_text: 114 - yield Static(self._quote_text, classes="post-quote", markup=False) 114 + yield Markdown(self._quote_text, classes="post-quote") 115 115 yield Markdown(self._body, classes="post-body") 116 116 for att in self.attachments: 117 117 name = att.get("name", "file")