Paste spreadsheet cells as a Markdown table.
Перейти к файлу
Siddharth Kshetrapal b6e76817b8
remove unnecessary --ignore-scripts
2022-10-10 17:08:26 +02:00
.devcontainer Add a .devcontainer 2022-02-28 17:05:07 +00:00
.github remove unnecessary --ignore-scripts 2022-10-10 17:08:26 +02:00
examples rename file to suit content 2022-05-12 02:13:47 +00:00
src Update readme 2022-09-21 08:20:10 +01:00
test PoC for granual support 2022-09-20 19:57:10 +02:00
.eslintignore Lint configs 2020-02-20 14:24:32 -05:00
.eslintrc.json chore: eslint 2022-02-01 20:27:01 +00:00
.gitignore Extract Markdown paste behaviors 2018-09-17 16:30:16 -06:00
CODEOWNERS move AOR to primer 2022-09-23 17:55:26 +01:00
LICENSE Extract Markdown paste behaviors 2018-09-17 16:30:16 -06:00
README.md Update readme 2022-09-21 08:20:10 +01:00
karma.config.js configure karma to use chromium 2022-02-16 22:55:58 +00:00
package-lock.json 1.3.3 2022-07-27 15:42:35 +00:00
package.json remove second publish from postpublish 2022-10-10 16:49:09 +02:00
prettier.config.js Extract Markdown paste behaviors 2018-09-17 16:30:16 -06:00
rollup.config.js Lint configs 2020-02-20 14:24:32 -05:00
tsconfig.json Don't convert HTMLCollection to Array 2022-01-26 09:59:59 +00:00

README.md

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 for details.

Installation

$ npm install @github/paste-markdown

Usage

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})

Excluding <table>s

Some <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>

Granular control for pasting as plain text

If you're wanting more granular support of pasting certain items as plain text by default, you can pass in the controls config at the subscribe level.

Our config support looks as follows:

import {subscribe} from '@github/paste-markdown'

// Subscribe the behavior to the textarea with pasting URL links as plain text by default.
subscribe(document.querySelector('textarea[data-paste-markdown]'), {defaultPlainTextPaste: {urlLinks: true}})

In this scenario above, pasting a URL over selected text will paste as plain text by default, but pasting a table will still paste as markdown by default.

Only the urlLinks param is currently supported.

If there is no config passed in, or attributes missing, this will always default to false, being the existing behavior.

Development

npm install
npm test

License

Distributed under the MIT license. See LICENSE for details.