This is a markdown preview with support for:
graph TD A[Enter Chart Definition] --> B(Preview) B --> C{decide} C --> D[Keep] C --> E[Edit Definition] E --> B D --> F[Save Image and Code] F --> B
sequenceDiagram Alice->>John: Hello John, how are you? John-->>Alice: Great! Alice-->>John: See you later!
Name | Type | Description | Default |
---|---|---|---|
id | string | Unique identifier | auto-generated |
title | string | Display title | "" |
isActive | boolean | Whether item is active | false |
count | number | Number of items | 0 |
tags | string[] | List of associated tags | [] |
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet("world"));