You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Find all pages about authentication in the DEV space"
"Search for API documentation created this month"
Create Page
"Create a Confluence page from this Markdown in the DEV space"
"Create a page titled 'API Guide' under 'Documentation' parent"
Update Page
"Update the 'Getting Started' page with this content"
"Find and update the authentication guide"
Convert Formats
"Convert this Wiki Markup to Markdown"
"Convert this Markdown to Confluence format"
Handle Diagrams
"Convert this Markdown with Mermaid diagrams to a Confluence page"
"Render these Mermaid diagrams and upload to Confluence"
Format Conversion Cheat Sheet
Element
Markdown
Wiki Markup
H1
# Heading
h1. Heading
Bold
**text**
*text*
Italic
*text*
_text*
Code
`code`
{{code}}
Link
[text](url)
`[text
Image

!url!
Bullet
- item
* item
Number
1. item
# item
CQL Search Quick Examples
# Find in space
space ="DEV"
# Find by title
title ~ "authentication"
# Find by content
text ~ "REST API"
# Created this month
created >= startOfMonth()
# My pages
creator = currentUser()
# With labels
label IN ("api", "docs")
# Complex
space ="DEV"AND
type = page AND
created >= startOfYear() AND
label ="api"