Markdown Support

June 24, 2026 · View on GitHub


Table of Contents


Overview

Markdown is a lightweight markup language that uses characters like *, #, and - to format text. Taskade supports Markdown across 7 different surfaces — from the project editor to AI agent chats, import/export, and browser widgets.


Where Markdown Works in Taskade

SurfaceWhat Markdown Does
Project editorFormat tasks, checklists, headings, and paragraphs inline
Import/ExportConvert .md docs to projects and projects to .md files
AI Project StudioAdd .md files as context for AI-generated projects
AI AgentsFine-tune agents using Markdown knowledge; structure prompts in agent chat
Chat & CommentsFormat team messages and task comments
Quick Add widgetAdd formatted notes and tasks from the desktop/browser widget
Taskade Genesis ContextUpload .md files as app-building context

Supported Syntax Reference

Inline Formatting

FeatureSyntaxRendered Output
Bold**bold text**bold text
Italic_italic text_italic text
Underline__underlined__underlined
Strikethrough~~strikethrough~~strikethrough
Inline code`code`code
Block quote> quoted text> quoted text
Code block```code block```Formatted code block

Block Formatting (Project Editor)

Type these at the beginning of a line followed by a space:

SyntaxResultDescription
#H1 headingLarge section title
##H2 headingSub-section title
-Bullet listUnordered list item
1. 2. 3.Numbered listOrdered list items
[]ChecklistCheckbox task item
FeatureSyntaxDescription
Workspace link"workspace link"Links to a workspace
Project link"project link"Links to a project
Web link[text](url)Standard hyperlink

Markdown in the Project Editor

Type Markdown syntax directly while editing tasks:

ActionHow
Create headingType # or ## at the start of a line
Create bullet listType - at the start of a line
Create numbered listType 1. at the start of a line
Create checklistType [] at the start of a line
Bold textWrap text in **double asterisks**
Italic textWrap text in _underscores_
Code blockWrap text in ```

Markdown in Chat & Comments

Chat

StepAction
1Open the project chat box
2Wrap your message in Markdown syntax
3Taskade renders the formatted text

Comments

StepAction
1Select a task → Click + → Select Comments (or press C)
2Type your comment with Markdown syntax
3Click send — Markdown is rendered

Markdown in Agent Chat

Use Markdown to structure prompts and get better AI responses:

TechniqueExampleUse Case
EmphasisFields marked with **bold** are mandatory.Highlight important instructions
Code blocks```python\ndef calculate(): ... ```Ask AI to analyze or debug code
Lists1. Download installer\n2. Accept license\n3. Choose directoryDefine step-by-step instructions
Block quotes> "Success is not final..."Emphasize key quotes or reminders

Markdown in AI Project Studio

Use .md files as context for AI-generated projects:

StepAction
1Click + Create newAI Project
2Describe the project you want
3Click the upload dropdown → Upload Files
4Upload your .md files as context
5Generate the project — AI uses your Markdown as input

Markdown in Browser Widgets & Quick Add

MethodSteps
Browser extensionRight-click Taskade Extension → Add content with Markdown → Choose project
Quick Add widgetOpen Quick Add → Write Markdown → Choose target project

Import & Export Markdown

Import

MethodSteps
File upload+ Create newImport → Drag .md files or click upload
Paste+ Create newImportPaste Text & Markdown → Paste content
DirectVisit taskade.com/create to start instantly

Export

StepAction
1Click the three dots (⋯) at the top-right of your project
2Select Export → Choose Markdown
3Download the .md file

Add Markdown to Agent Knowledge

Create Markdown knowledge sources directly in your agent:

StepAction
1Go to Agents tab → Click three dots → Edit agent
2Open the Knowledge tab
3Click Add Markdown/Text
4Paste Markdown or plain text into the pop-up
5Click Add to Knowledge
6Click Update in the Knowledge tab to save

What's Next

GuideWhat You'll Learn
ImportFull import walkthrough
Editing & FormattingAll formatting options