Vending Mocha isn't just about text; it supports a wide range of Markdown features to help you write rich content.
You can use bold, italics, and
strikethrough text.
"Blockquotes are great for emphasizing important information or quoting sources."
You can write code blocks with syntax highlighting!
interface User {
id: number;
name: string;
role: 'admin' | 'user';
}
const getUser = (id: number): User => {
return {
id,
name: 'Jane Doe',
role: 'admin'
};
};
You can link to Google or internal pages.
Happy writing! ✍️