Stardown icon indicating copy to clipboard operation
Stardown copied to clipboard

Copy tables as markdown

Open wheelercj opened this issue 9 months ago • 0 comments

Depends on #19.

With the setting "when creating markdown of a selection, try to keep the same format", copying a table should result in a markdown table.

For example, copying the selection in this image:

image

should give this markdown:

| Syntax | Description |
| --- | --- |
| Header | Title |
| Paragraph | Text |

which renders as:

Syntax Description
Header Title
Paragraph Text

It's fine if the resulting markdown has consistent cell widths like this:

| Syntax      | Description |
| ----------- | ----------- |
| Header      | Title       |
| Paragraph   | Text        |

wheelercj avatar May 21 '24 05:05 wheelercj