- Generate code blocks with syntax highlighting
- Include formatted JSON for raw data
- Support markdown within blockquotes
Created
May 20, 2025 03:12
-
-
Save c9r/268f65d0a37d9e1bd4fda7071660e826 to your computer and use it in GitHub Desktop.
Tool Form templates for common API patterns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This demonstrates how to use nested markdown encodings | |
function encodeMarkdown() { | |
return { | |
$encode: 'markdown', | |
$h1: 'Title', | |
$code: { | |
$lang: 'typescript', | |
$content: 'console.log("Hello world")' | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment