Fix Quotes
Normalizes typographic quotation marks, em-dashes, en-dashes, and ellipsis characters to their ASCII equivalents. Targets the smart punctuation that LLMs and rich-text editors inject into code output.
Strip Invisible
Removes zero-width characters (ZWSP, ZWNJ, ZWJ), variation selectors, Private Use Area glyphs, and bidirectional formatting controls. Neutralizes invisible watermarks and mitigates Trojan Source injection vectors.
ASCII
Converts non-ASCII digits (Arabic-Indic, Devanagari, etc.), confusable punctuation (fullwidth forms, mathematical operators), and lookalike letters (Cyrillic and Greek homoglyphs) to their standard ASCII counterparts.
Align
Detects and removes common leading whitespace across all lines. Corrects the uniform indentation artifacts produced when code is extracted from Markdown blocks, nested quotations, or documentation templates.
strip()
Trims leading and trailing whitespace from each line. Eliminates invisible trailing spaces and tabs that cause test failures, diff noise, and linter violations.
Terminal Fix
Extracts content from fenced code blocks, normalizes shell operator spacing, repairs line continuations, and collapses excess blank lines. Prepares LLM-generated commands for direct terminal execution.
Zap Emoji
Strips emoji characters, pictographs, regional indicators, and ZWJ sequences from the input. Removes decorative symbols that LLMs sometimes embed in code comments and documentation output.
Digg Fix
Inserts paragraph breaks between detected sentence boundaries for forum-style post formatting. Preserves list structures, code indentation, and intentional line groupings.