# paste-markdown **Repository Path**: mirrors_github/paste-markdown ## Basic Information - **Project Name**: paste-markdown - **Description**: Paste spreadsheet cells as a Markdown table. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Paste Markdown objects - Paste spreadsheet cells and HTML tables as a Markdown tables. - Paste URLs on selected text as Markdown links. - Paste text containing links as text containing Markdown links. - Paste image URLs as Markdown image links. - Paste markdown as markdown. See [`@github/quote-selection`/Preserving markdown syntax](https://github.com/github/quote-selection/tree/9ae5f88f5bc3021f51d2dc9981eca83ce7cfe04f#preserving-markdown-syntax) for details. ## Installation ``` $ npm install @github/paste-markdown ``` ## Usage ```js import {subscribe} from '@github/paste-markdown' // Subscribe the behavior to the textarea. subscribe(document.querySelector('textarea[data-paste-markdown]')) ``` Using a library like [selector-observer][so], the behavior can automatically be applied to any element matching a selector. [so]: https://github.com/josh/selector-observer ```js import {observe} from 'selector-observer' import {subscribe} from '@github/paste-markdown' // Subscribe the behavior to all matching textareas. observe('textarea[data-paste-markdown]', {subscribe}) ``` ### Excluding `