Comments
Comments
Discuss and collaborate on documentation using comments.
What are Comments?
Comments enable team discussions directly on documentation files. Use them to:
- Ask questions about content
- Suggest improvements
- Provide feedback
- Discuss changes
- Coordinate with teammates
Types of Comments
File-Level Comments
General discussions about the entire file:
- Open a file
- Click Comments in the sidebar
- Type your comment
- Click Post
File comments appear in the main comments section.
Version-Specific Comments
Comments about specific versions:
- Open Version History
- Select a version
- Click Comment on This Version
- Type your comment
- Click Post
Version comments stay attached to that version.
Creating Comments
Write a Comment
- Navigate to Comments section
- Click in the text box
- Write your comment (Markdown supported)
- Click Post or press
Cmd/Ctrl + Enter
Formatting Comments
Use Markdown for rich formatting:
**Bold text** *Italic text* `code` [Link](https://example.com) - Bullet list - Another item > Quote
Mentioning Team Members
Coming soon: Mention teammates with @username to notify them.
Managing Comments
Edit Your Comment
- Find your comment
- Click Edit (⋯ menu)
- Modify the text
- Click Save
Edited comments show "(edited)" indicator.
Delete Your Comment
- Find your comment
- Click Delete (⋯ menu)
- Confirm deletion
Deleted comments cannot be recovered.
Reply to Comments
Create threaded discussions:
- Find the comment to reply to
- Click Reply
- Write your response
- Click Post
Replies appear indented under the original comment.
Comment Threads
View Threads
Comment threads show:
- Original comment
- All replies indented
- Timestamps for each message
- Author names
- Read/unread status
Collapse Threads
Hide long conversations:
- Click the Collapse button on the parent comment
- Thread is hidden
- Click Expand to show it again
Comment Notifications
Get notified about comment activity:
Notification Settings
- Navigate to Settings → Notifications
- Configure comment notifications:
- New comments on files you created
- Replies to your comments
- Mentions (coming soon)
Notification Channels
Receive notifications via:
- In-app notifications
- Email notifications
- Slack notifications (Professional plan+)
Comment Best Practices
Be Specific
Reference specific content:
- ✅ "In the Authentication section, should we mention OAuth 2.0?"
- ✅ "Line 23: This example uses deprecated syntax"
- ❌ "This needs work"
- ❌ "Update this"
Use Constructive Language
Frame feedback positively:
- ✅ "Consider adding an example here for clarity"
- ✅ "This section could be expanded to cover edge cases"
- ❌ "This is wrong"
- ❌ "Bad explanation"
Respond Promptly
Keep discussions moving:
- Respond to comments within 24-48 hours
- Keep threads focused
- Take complex discussions offline if needed
Tag Comments
Use tags to categorize comments:
[question]- Asking for clarification[blocker]- Must be addressed before publishing[nice-to-have]- Optional improvements
Comment Permissions
Who Can Comment
- Owner, Admin, Editor - Can comment on any file
- Viewer - Can read comments, cannot create
Who Can Edit/Delete
- Comment author can edit/delete their own comments
- Workspace Owners and Admins can delete any comment
- Others cannot modify comments
Comment History
All comments are preserved:
- Full history available
- Edits are tracked
- Deleted comments noted in history
- Audit trail for compliance (Enterprise)
Comments via API
Manage comments programmatically:
# List comments on a file curl -X GET "https://api.contextium.io/files/{fileId}/comments" \ -H "Authorization: Bearer YOUR_API_KEY" # Create a comment curl -X POST "https://api.contextium.io/files/{fileId}/comments" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"content": "Great documentation!"}'
See API Documentation for full reference.