
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
gatsby-remark-widows
Advanced tools
Automatically adds a non-breaking space between the last 2 words in a text node parsed by gatsby-transformer-remark
. This ensures there isn't a "widow", or single word left at the end of a wrapped sentance/paragraph.
Lorem ipsum dolor sit Lorem irure aliquip magna labore qui
velit officia aliquip deserunt aliqua. Aute tempor fugiat nisi
adipisicing et aliquip sint minim cupidatat elit consequat
et.
:arrow_down:
Lorem ipsum dolor sit Lorem irure aliquip magna labore qui
velit officia aliquip deserunt aliqua. Aute tempor fugiat nisi
adipisicing et aliquip sint minim cupidatat elit
consequat et.
npm install --save gatsby-remark-widows
Currently uses \u00a0
to insert a space so you don't need to use dangerouslySetInnerHTML
.
Your browser should™ render that as
Warning: This currently effects every text node. You can limit by word count via the options.
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-transformer-remark`,
options: {
// Probably best to place after other plugins
plugins: [`gatsby-remark-widows`],
},
},
];
You may set some options to configure which text nodes are processed by their word count. Defaults to minLength: 4
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: 'gatsby-remark-widows',
options: {
minLength: 4, // default
maxLength: null, // default
},
},
],
},
},
];
FAQs
Removes widows from text over 4 words
We found that gatsby-remark-widows demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.