mirror of
https://github.com/zedeus/nitter
synced 2026-09-06 07:09:31 +00:00
Render markdown files with a tool
This commit is contained in:
parent
1fc6a4092e
commit
8c2e0c66e2
9 changed files with 45 additions and 21 deletions
14
src/views/feature.nim
Normal file
14
src/views/feature.nim
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
import karax/[karaxdsl, vdom]
|
||||
|
||||
proc renderFeature*(): VNode =
|
||||
buildHtml(tdiv(class="overlay-panel")):
|
||||
h1: text "Unsupported feature"
|
||||
p:
|
||||
text "Nitter doesn't support this feature yet, but it might in the future. "
|
||||
text "You can check for an issue and open one if needed here: "
|
||||
a(href="https://github.com/zedeus/nitter/issues"):
|
||||
text "https://github.com/zedeus/nitter/issues"
|
||||
p:
|
||||
text "To find out more about the Nitter project, see the "
|
||||
a(href="/about"): text "About page"
|
||||
Loading…
Reference in a new issue