npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

retext-smartypants

v6.1.0

Published

retext plugin to implement SmartyPants

Downloads

966,487

Readme

retext-smartypants

Build Coverage Downloads Size Sponsors Backers Chat

retext plugin to apply SmartyPants.

Contents

What is this?

This package is a unified (retext) plugin to apply SmartyPants to the syntax tree. It replaces straight/typewriter punctuation marks and symbols with smart/curly marks and symbols.

When should I use this?

You can use this plugin any time there straight marks and symbols in prose, but you want to use smart ones instead.

Install

This package is ESM only. In Node.js (version 16+), install with npm:

npm install retext-smartypants

In Deno with esm.sh:

import retextSmartypants from 'https://esm.sh/retext-smartypants@6'

In browsers with esm.sh:

<script type="module">
  import retextSmartypants from 'https://esm.sh/retext-smartypants@6?bundle'
</script>

Use

import {retext} from 'retext'
import retextSmartypants from 'retext-smartypants'

const file = await retext()
  .use(retextSmartypants)
  .process('He said, "A \'simple\' english sentence. . ."')

console.log(String(file))

Yields:

He said, “A ‘simple’ english sentence…”

API

This package exports no identifiers. The default export is retextSmartypants.

unified().use(retextSmartypants[, options])

Replace straight punctuation marks with curly ones.

Parameters
  • options (Options, optional) — configuration
Returns

Transform (Transformer).

Options

Configuration (TypeScript type).

Fields
  • backticks (boolean or 'all', default: true) — transform backticks; when true, turns double backticks into an opening double quote and double straight single quotes into a closing double quote; when 'all', does that and turns single backticks into an opening single quote and a straight single quotes into a closing single smart quote; quotes: false must be used with backticks: 'all'
  • closingQuotes (QuoteCharacterMap, default: {double: '”', single: '’'}) — closing quotes to use
  • dashes ('inverted' or 'oldschool' or boolean, default: true) — transform dashes; when true, turns two dashes into an em dash character; when 'oldschool', turns three dashes into an em dash and two into an en dash; when 'inverted', turns three dashes into an en dash and two into an em dash
  • ellipses ('spaced' or 'unspaced' or boolean, default: true) — transform triple dots; when 'spaced', turns triple dots with spaces into ellipses; when 'unspaced', turns triple dots without spaces into ellipses; when true, turns triple dots with or without spaces into ellipses
  • openingQuotes (QuoteCharacterMap, default: {double: '“', single: '‘'}) — opening quotes to use
  • quotes (boolean, default: true) — transform straight quotes into smart quotes

QuoteCharacterMap

Quote characters (TypeScript type).

Fields
  • double (string) — character to use for double quotes
  • single (string) — character to use for single quotes

Types

This package is fully typed with TypeScript. It exports the additional types Options and QuoteCharacterMap.

Compatibility

Projects maintained by the unified collective are compatible with maintained versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, retext-smartypants@^6, compatible with Node.js 16.

Contribute

See contributing.md in retextjs/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer