Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@github/paste-markdown
Advanced tools
@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>
sSome <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>
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.
npm install
npm test
Distributed under the MIT license. See LICENSE for details.
FAQs
Paste spreadsheet cells as a Markdown table.
The npm package @github/paste-markdown receives a total of 11,014 weekly downloads. As such, @github/paste-markdown popularity was classified as popular.
We found that @github/paste-markdown demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 15 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.