Skip to content

paste-markdown 0.3.0 Latest version

Install from the command line:
Learn more
$ npm install @github/paste-markdown@0.3.0
Install via package.json:
"@github/paste-markdown": "0.3.0"

About this package

Paste Markdown objects

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>

Development

npm install
npm test

License

Distributed under the MIT license. See LICENSE for details.

Package details

  • @github github
  • February 20, 2020
  • 12 dependencies
  • MIT License

Download activity

  • Total downloads 7
  • Last 30 days 2
  • Last week 0
  • Today 0

Recent versions

View all
You can’t perform that action at this time.