aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/markdown.hh
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2021-01-26 06:22:24 -0500
committerShea Levy <shea@shealevy.com>2021-01-26 06:22:24 -0500
commit6af6e41df06f0a8a3b919b4052b41d09f0a97678 (patch)
tree2b2a3a8c199151b3ffc21599a9a0f06adeea1ff3 /src/libcmd/markdown.hh
parent36c4d6f59247826dde32ad2e6b5a9471a9a1c911 (diff)
Move command plugin interface to libnixcmd
Diffstat (limited to 'src/libcmd/markdown.hh')
-rw-r--r--src/libcmd/markdown.hh7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libcmd/markdown.hh b/src/libcmd/markdown.hh
new file mode 100644
index 000000000..78320fcf5
--- /dev/null
+++ b/src/libcmd/markdown.hh
@@ -0,0 +1,7 @@
+#include "types.hh"
+
+namespace nix {
+
+std::string renderMarkdownToTerminal(std::string_view markdown);
+
+}