Install a shortcut to append selected text to a as a Markdown quote.</body></html>
Перейти к файлу
Manuel Puyol fcde1dde8c
Merge pull request #59 from github/dependabot/npm_and_yarn/braces-3.0.3
Bump braces from 3.0.2 to 3.0.3
2024-06-17 09:23:21 -07:00
.github
examples
src Address prettier warning 2024-06-04 15:41:18 +01:00
test Test new behaiour 2024-06-04 16:15:16 +01:00
.gitignore
.travis.yml
CODEOWNERS
LICENSE
README.md
karma.config.js
package-lock.json Bump braces from 3.0.2 to 3.0.3 2024-06-16 09:45:39 +00:00
package.json update 2024-06-04 17:43:06 +00:00
rollup.config.js
tsconfig.json

README.md

Quote selection

Helpers for quoting selected text, appending the text into a <textarea> as a Markdown quote.

Installation

$ npm install @github/quote-selection

Usage

<div class="my-quote-region">
  <p>Text to quote</p>
  <textarea></textarea>
</div>
import {Quote} from '@github/quote-selection'

document.addEventListener('keydown', event => {
  if (event.key == 'r') {
    const quote = new Quote()
    if (quote.closest('.my-quote-region')) {
      quote.insert(document.querySelector('textarea'))
    }
  }
})

Quote will take the currently selected HTML from the specified quote region, convert it to markdown, and create a quoted representation of the selection.

insert will insert the string representation of a selected text into the specified text area field.

Preserving Markdown syntax

const quote = new MarkdownQuote('.comment-body')
quote.select(document.querySelector('.comment-body'))
if (quote.closest('.my-quote-region')) {
  quote.insert(quote, document.querySelector('textarea'))
}

Using MarkdownQuote instead of Quote will ensure markdown syntax is preserved.

The optional scopeSelector parameter of MarkdownQuote ensures that even if the user selection bleeds outside of the scoped element, the quoted portion will always be contained inside the scope. This is useful to avoid accidentally quoting parts of the UI that might be interspersed between quotable content.

Development

npm install
npm test

License

Distributed under the MIT license. See LICENSE for details.