Document renderMarkdownToTerminal

This commit is contained in:
Robert Hensing 2024-07-24 12:53:37 +02:00
parent 7d4d34a27d
commit 0bd2d36375

View file

@ -5,6 +5,13 @@
namespace nix {
/**
* Render the given Markdown text to the terminal.
*
* If Nix is compiled without Markdown support, this function will return the input text as-is.
*
* The renderer takes into account the terminal width, and wraps text accordingly.
*/
std::string renderMarkdownToTerminal(std::string_view markdown);
}