This is a *markdown* document with a code block: ```ts // src/example.ts export function helloWorld(name: string): string { return `Hello ${name}!, how are you today?`; } ```