| Dec | JAN | Feb |
| 20 | ||
| 2020 | 2021 | 2022 |
COLLECTED BY
Collection: github.com
@github/quote-selection/Preserving markdown syntax for details.
$ npm install @github/paste-markdown
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, the behavior can automatically be applied to any element matching a selector.
import {observe} from 'selector-observer' import subscribe from '@github/paste-markdown' // Subscribe the behavior to all matching textareas. observe('textarea[data-paste-markdown]', {subscribe})
<table>s
<table>s are not meant to be pasted as markdown; for example, a file content table with line numbers in a column. Use data-paste-markdown-skip to prevent it.
<table data-paste-markdown-skip> ... </table>
npm install
npm test