Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/user-guide/assistants/copy-table.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
id: copy-table
title: Copy Table to Clipboard
sidebar_label: Copy Table
sidebar_position: 20
pagination_prev: user-guide/assistants/assistants-overview
pagination_next: null
---

# Copy Table to Clipboard

When an assistant response includes a markdown table, a **Copy** button appears in the top-right corner of the table. Clicking the button copies the full table content to the clipboard as plain text, regardless of table size or scroll position.

A **"Table copied to clipboard"** confirmation message appears briefly after the copy is complete.

This makes it easy to reuse structured data from assistant responses — for example, pasting a table into a spreadsheet, document, or another tool without requiring manual text selection.

![Copy Table button and toast](./images/copy-table-btn.png)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions faq/how-do-i-copy-a-table-from-an-assistant-response.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# How do I copy a table from an assistant response?

Every markdown table in an assistant response has a **Copy** button in the top-right corner. Clicking it copies the full table content to the clipboard as plain text. A **"Table copied to clipboard"** confirmation message appears briefly after the copy completes.

The entire table is copied regardless of its size or scroll position, so there is no need to manually select the text.

## Sources

- [Copy Table to Clipboard](https://docs.codemie.ai/user-guide/assistants/copy-table/)
1 change: 1 addition & 0 deletions sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ const sidebars: SidebarsConfig = {
'user-guide/assistants/share-assistant-chat-with-other-users',
'user-guide/assistants/export-assistant-chat-messages-to-word-and-pdf-formats',
'user-guide/assistants/html-preview',
'user-guide/assistants/copy-table',
'user-guide/assistants/chat-input-settings',
],
},
Expand Down
Loading