Tools for beautifully rendering markdown in your terminal.
Tool | What does it do? | Get It |
---|---|---|
MarkdownCli |
CLI app powered by MarkdownConsole |
Download |
MarkdownConsole |
.Net library for pretty printing markdown in your terminal | Download |
A CLI app that beautifully renders markdown in your terminal.
# You can pipe input
$ "*bold text*" | md-cli
# Or pass as an arg
$ md-cli "_italic text_"
# We accept files
$ md-cli /path/to/markdown.md
$ /path/to/markdown.md | md-cli
- You'll need .Net 6
- Navigate to ./src/markdown-cli/
dotnet build
Or you can download prebuilt binaries. We support Windows and Linux.
You do not need to download anything else
A .Net library that uses Ansi Escape Codes to pretty print markdown.
# Download from NuGet
# https://www.nuget.org/packages/Morello.MarkdownConsole
> dotnet add package Morello.MarkdownConsole
We support .Net Standard 2.0
.
This provides great coverage for recent versions of .Net
, .Net Core
and .Net Framework
.
The full list is available here.
using Morello;
public class Program
{
public static Main(string[] args)
{
MarkdownConsole.Write("**bold text**");
}
}
MarkdownConsole
uses these amazing projects to make your markdown look its best.
Installing Bat or Nerd Fonts adds extra flourishes. Don't worry if you don't use these fantastic projects. We will still render beautiful markdown in your terminal.
-
Bat
When installed Bat provides colourful syntax highlighting.
When not we fallback to a basic highlighter. -
Nerd Fonts
When installed Nerd Fonts add extra decorations to the text.
When not we use a mix of colours and styles.
Got something to say❓ I'd love to hear from you.
Found a 🐛? Open an issue.