Typography
Headings
This is an h2 heading above, and this is an h3 heading. Both get automatic id attributes for deep linking and Table of Contents integration.
Paragraph
Regular paragraph text uses text-text-secondary with relaxed leading. You can use bold text, italic text, and inline code within paragraphs.
Images
Standard markdown images render with rounded corners and a subtle border:
Image Carousel
Use the ImageCarousel component for multiple images with navigation:
Video
Embed tutorial videos with the TutorialVideo component:
Code
Inline Code
Use backticks for inline code: const x = 42, file paths like ~/Library/Application Support/Tuka, keyboard shortcuts like ā + Shift + 5, and component names like <ImageCarousel />.
HTML-style tags also render as inline code: <video>, <canvas>, <StepList>.
Code Blocks
Bash:
brew install --cask tuka
tuka --version
TypeScript:
interface Recording {
id: string;
duration: number;
format: "mp4" | "gif";
resolution: [number, number];
}
function exportRecording(rec: Recording): Promise<string> {
return process.export(rec);
}
JSON:
{
"name": "tuka",
"version": "2.0.0",
"platform": "darwin",
"features": ["recording", "editing", "export"]
}
Callouts
This is a tip callout. Use it for helpful suggestions and best practices.
This is a warning callout. Use it when users should be careful about something.
This is an info callout. Use it for general information and context.
Step Lists
Open Tuka from your Applications folder.
Select a recording source from the picker.
Click Record to start capturing.
When finished, click Stop and edit your recording.
Blockquote
"Tuka changed how I create tutorials. What used to take hours now takes minutes." ā A happy user
Lists
Unordered
- Screen recording with system audio
- Window capture with custom backgrounds
- Region selection with preset sizes
- Mobile device recording via USB
Ordered
- Install Tuka from the website
- Grant screen recording permissions
- Choose your recording source
- Hit record and create
Tables
| Feature | Free Trial | Pro |
|---|---|---|
| Screen recording | 5 min limit | Unlimited |
| Export formats | MP4 only | MP4 + GIF |
| Auto captions | No | Yes |
| Silence removal | No | Yes |
| Smart Slides | No | Yes |
| Resolution | Up to 1080p | Up to 4K |
Mermaid Diagrams
Use standard ```mermaid code blocks to render diagrams.