extends ../layout.pug block head title Frequently Asked Questions block content h1.board-title FAQ .table-container.flex-center.mv-10 table.table-body tr.table-head th Post styling tr.table-row td.post-message p When posting, you can use certain characters to style your post with bold, italics, code blocks, quotes, etc. The formatting is as follows: b Greentext div >greentext → span.greentext >greentext br b Pinktext div <pinktext → span.pinktext <pinktext br b Title div ==title== → span.title title br b Bold div ""bold"" → strong bold br b Underline div __underline__ → span.underline underline br b Strikethrough div ~~strikethrough~~ → span.strikethrough strikethrough br b Italic div **italic** → em italic br b Detected div (((detected))) → span.detected (((detected))) br b Code Block pre.no-m-p | ``` | var foo = 'bar'; | ``` span.code var foo = 'bar'; br b Inline monospace div `monospace` → span.mono monospace br b Hyperlinking div https://example.com → #[a(href='https://example.com') https://example.com] br b Quotes div >>123 → #[a(class="quote" href="#!") >>123] br b Cross Board Quotes div >>>/b/ → #[a(class="quote" href="#!") >>>/b/] div >>>/b/123 → #[a(class="quote" href="#!") >>>/b/123] br