Rich Editor
AgileTune's editor combines a visual formatting toolbar with full markdown support, making it easy to write detailed task descriptions and comments.
Formatting Toolbar
The toolbar appears at the top of any text field and includes:
- Bold, Italic, Strikethrough, and Underline
- Headings (H1, H2, H3)
- Ordered and unordered lists
- Blockquotes
- Horizontal rules
- Links and images
Markdown Syntax
You can type markdown directly and it will render in real time. Common shortcuts:
| Syntax | Result |
|---|---|
| **bold** | bold |
| *italic* | italic |
| ~~strikethrough~~ | |
| - [ ] checkbox | ☐ checkbox |
| `inline code` | inline code |
| > blockquote | Indented quote block |
@Mentions
Type @followed by a team member's name to mention them. Mentioned users receive a notification and the mention appears as a clickable link in the text. You can also mention teams with @team-name.
Code Blocks with Syntax Highlighting
Wrap code in triple backticks to create a code block. Specify the language after the opening backticks for syntax highlighting:
```typescript
function greet(name: string) {
return `Hello, ${name}!`;
}
```AgileTune supports syntax highlighting for 50+ languages including TypeScript, Python, Go, Rust, SQL, and more.
Checklists
Create interactive checklists by typing - [ ] at the start of a line. Click the checkbox to toggle completion. Checklists are great for tracking acceptance criteria or a quick to-do list within a task.
File Attachments & Images
Drag and drop files into the editor or click the attachment icon in the toolbar. Supported file types include images, PDFs, spreadsheets, and archives up to 25 MB each. Images are displayed inline with optional alt text.
You can also paste images directly from your clipboard with ⌘+V (Mac) orCtrl+V (Windows/Linux).