Skip to content

Instantly share code, notes, and snippets.

@c9r
Created May 20, 2025 03:12
Show Gist options
  • Save c9r/268f65d0a37d9e1bd4fda7071660e826 to your computer and use it in GitHub Desktop.
Save c9r/268f65d0a37d9e1bd4fda7071660e826 to your computer and use it in GitHub Desktop.
Tool Form templates for common API patterns

Nested Markdown Encodings

  1. Generate code blocks with syntax highlighting
  2. Include formatted JSON for raw data
  3. Support markdown within blockquotes
// 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