codeBlock
Wraps the content inside a codeblock with no language
declare function codeBlock<C extends string>(content: C): `\`\`\`\n${C}\n\`\`\``;
declare function codeBlock<C extends string>(content: C): `\`\`\`\n${C}\n\`\`\``;
Name | Type | Optional | Description |
---|---|---|---|
content | C | No | The content to wrap |