Agent skill

libformat

libformat - Markdown formatting utilities. toHtml converts markdown to sanitized HTML safe for web display. toTerminal converts markdown to ANSI terminal output with colors. createToHtml and createToTerminal are factories for dependency injection. Use for rendering markdown in web apps and CLI tools.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/libformat

SKILL.md

libformat Skill

When to Use

  • Rendering markdown as HTML in web applications
  • Formatting CLI output with colors and styling
  • Converting agent responses for display
  • Sanitizing user-generated markdown content

Key Concepts

toHtml: Converts markdown to HTML with sanitization to prevent XSS attacks.

toTerminal: Converts markdown to terminal output with ANSI escape codes for colors and formatting.

Usage Patterns

Pattern 1: Web rendering

javascript
import { toHtml } from "@copilot-ld/libformat";

const html = toHtml("# Hello **World**");
// Returns: <h1>Hello <strong>World</strong></h1>

Pattern 2: Terminal output

javascript
import { toTerminal } from "@copilot-ld/libformat";

const output = toTerminal("# Hello **World**");
console.log(output); // Colored terminal output

Integration

Used by Web extension to format agent responses. Used by CLI tools for terminal output.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results