vtcode-core 0.9.1

Core library for VTCode - a Rust-based terminal coding agent
Documentation
1
2
3
4
5
6
7
8
9
//! Markdown rendering utilities for terminal output

use termimad::*;

/// Render markdown text to terminal with advanced formatting using termimad
pub fn render_markdown(text: &str) {
    let skin = MadSkin::default();
    skin.print_text(text);
}