Code Screenshot
v1.0.0Turn code snippets into beautiful screenshots with syntax highlighting and customizable themes.
Code Screenshot that formats, validates, or transforms source code files.
How to use- →Paste your code into the editor panel.
- →The formatted or analysed output appears automatically.
- →Copy the result using the Copy button.
- →Try a preset from the example picker to see sample input.
index.ts — TypeScript
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet("World"));