retext-syntax-urls

retext plugin to classify url-like values as syntax, not natural language

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
retext-syntax-urls
904.0.08 months ago7 years agoMinified + gzip package size for retext-syntax-urls in KB

Readme

retext-syntax-urls
!Buildbuild-badgebuild !Coveragecoverage-badgecoverage !Downloadsdownloads-badgedownloads !Sizesize-badgesize !Sponsorssponsors-badgecollective !Backersbackers-badgecollective !Chatchat-badgechat
retext plugin to classify URL-like values as syntax instead of natural language.

Contents

*   [`unified().use(retextSyntaxUrls)`](#unifieduseretextsyntaxurls)

What is this?

This package is a unified
(retext) plugin to classify URL-like values (such as example.com, index.html, or www.alpha.bravo) as SourceNodenlcst-source instead of natural language. That node represent “external (ungrammatical) values” instead of natural language, which hides URLs and paths from retext-spellretext-spell, retext-readabilityretext-readability, retext-equalityretext-equality, and other things that check words.

When should I use this?

You can use this plugin any time there are URLs and paths in prose, that are (incorrectly) warned about by linting plugins.
👉 Note: this is not a markdown parser. Use unified with remark-parseremark-parse and remark-retextremark-retext to “hide” other syntax.

Install

This package is ESM onlyesm. In Node.js (version 16+), install with npm:
npm install retext-syntax-urls

In Deno with esm.shesmsh:
import retextSyntaxUrls from 'https://esm.sh/retext-syntax-urls@4'

In browsers with esm.shesmsh:
<script type="module">
  import retextSyntaxUrls from 'https://esm.sh/retext-syntax-urls@4?bundle'
</script>

Use

Without retext-syntax-urls:
import dictionaryEn from 'dictionary-en'
import retextEnglish from 'retext-english'
import retextSpell from 'retext-spell'
import retextStringify from 'retext-stringify'
import retextSyntaxUrls from 'retext-syntax-urls'
import {unified} from 'unified'
import {reporter} from 'vfile-reporter'

const file = await unified()
  .use(retextEnglish)
  .use(retextSpell, dictionaryEn)
  .use(retextStringify)
  .process('Have you read readme.md? Check it out: www.example.com/readme.md')

console.log(reporter(file))

Yields:
1:15-1:24 warning `readme.md` is misspelt                 readme-md       retext-spell
1:40-1:55 warning `www.example.com` is misspelt           www-example.com retext-spell
1:56-1:65 warning `readme.md` is misspelt; did you mean ? readme-md       retext-spell

⚠ 3 warnings

With retext-syntax-urls:
.use(retextEnglish)
+  .use(retextSyntaxUrls)
.use(retextSpell, dictionaryEn)

Yields:
no issues found

API

This package exports no identifiers. The default export is retextSyntaxUrlsapi-retext-syntax-urls.

unified().use(retextSyntaxUrls)

Classify url-like values (example.com, index.html, www.alpha.bravo) as syntax instead of natural language.
Parameters
There are no parameters.
Returns
Nothing (undefined).

Types

This package is fully typed with TypeScript. It exports no additional types.

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-syntax-urls@^4, compatible with Node.js 16.

Related

— classify [**@mentions**](https://github.com/blog/821) as syntax
— check spelling
— check readability
— check possible insensitive, inconsiderate language

Contribute

See contributing.mdcontributing in retextjs/.githubhealth for ways to get started. See support.mdsupport for ways to get help.
This project has a code of conductcoc. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MITlicense © Titus Wormerauthor