Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

remark-lint-table-pipes

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remark-lint-table-pipes - npm Package Compare versions

Comparing version 4.1.0 to 4.1.1

4

index.d.ts
export default remarkLintTablePipes
export type Root = import('mdast').Root
declare const remarkLintTablePipes: import('unified').Plugin<
| void[]
| [unknown]
| void[]
| [
(
| boolean
| import('unified-lint-rule').Label
| import('unified-lint-rule').Severity
| import('unified-lint-rule').Label
),

@@ -12,0 +12,0 @@ unknown

/**
* @author Titus Wormer
* @copyright 2015 Titus Wormer
* @license MIT
* @module table-pipes
* @fileoverview
* Warn when table rows are not fenced with pipes.
* ## When should I use this?
*
* ## Fix
* You can use this package to check that tables have initial and final
* delimiters.
* Tables are a GFM feature enabled with
* [`remark-gfm`](https://github.com/remarkjs/remark-gfm).
*
* [`remark-stringify`](https://github.com/remarkjs/remark/tree/HEAD/packages/remark-stringify)
* creates fenced rows with initial and final pipes by default.
* ## API
*
* See [Using remark to fix your Markdown](https://github.com/remarkjs/remark-lint#using-remark-to-fix-your-markdown)
* on how to automatically fix warnings for this rule.
* There are no options.
*
* ## Recommendation
*
* While tables don’t require initial or final delimiters (pipes before the
* first and after the last cells in a row), it arguably does look weird.
*
* ## Fix
*
* [`remark-gfm`](https://github.com/remarkjs/remark-gfm)
* formats all tables with initial and final delimiters.
*
* @module table-pipes
* @summary
* remark-lint rule to warn when tables are missing initial and final
* delimiters.
* @author Titus Wormer
* @copyright 2015 Titus Wormer
* @license MIT
* @example

@@ -18,0 +31,0 @@ * {"name": "ok.md", "gfm": true}

{
"name": "remark-lint-table-pipes",
"version": "4.1.0",
"version": "4.1.1",
"description": "remark-lint rule to warn when table rows are not fenced with pipes",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -13,12 +13,34 @@ <!--This file is generated-->

Warn when table rows are not fenced with pipes.
[`remark-lint`][mono] rule to warn when tables are missing initial and final
delimiters.
## Fix
## Contents
[`remark-stringify`](https://github.com/remarkjs/remark/tree/HEAD/packages/remark-stringify)
creates fenced rows with initial and final pipes by default.
* [What is this?](#what-is-this)
* [When should I use this?](#when-should-i-use-this)
* [Presets](#presets)
* [Install](#install)
* [Use](#use)
* [API](#api)
* [`unified().use(remarkLintTablePipes[, config])`](#unifieduseremarklinttablepipes-config)
* [Recommendation](#recommendation)
* [Fix](#fix)
* [Examples](#examples)
* [Compatibility](#compatibility)
* [Contribute](#contribute)
* [License](#license)
See [Using remark to fix your Markdown](https://github.com/remarkjs/remark-lint#using-remark-to-fix-your-markdown)
on how to automatically fix warnings for this rule.
## What is this?
This package is a [unified][] ([remark][]) plugin, specifically a `remark-lint`
rule.
Lint rules check markdown code style.
## When should I use this?
You can use this package to check that tables have initial and final
delimiters.
Tables are a GFM feature enabled with
[`remark-gfm`](https://github.com/remarkjs/remark-gfm).
## Presets

@@ -32,4 +54,93 @@

## Example
## Install
This package is [ESM only][esm].
In Node.js (version 12.20+, 14.14+, or 16.0+), install with [npm][]:
```sh
npm install remark-lint-table-pipes
```
In Deno with [Skypack][]:
```js
import remarkLintTablePipes from 'https://cdn.skypack.dev/remark-lint-table-pipes@4?dts'
```
In browsers with [Skypack][]:
```html
<script type="module">
import remarkLintTablePipes from 'https://cdn.skypack.dev/remark-lint-table-pipes@4?min'
</script>
```
## Use
On the API:
```js
import {read} from 'to-vfile'
import {reporter} from 'vfile-reporter'
import {remark} from 'remark'
import remarkLint from 'remark-lint'
import remarkLintTablePipes from 'remark-lint-table-pipes'
main()
async function main() {
const file = await remark()
.use(remarkLint)
.use(remarkLintTablePipes)
.process(await read('example.md'))
console.error(reporter(file))
}
```
On the CLI:
```sh
remark --use remark-lint --use remark-lint-table-pipes example.md
```
On the CLI in a config file (here a `package.json`):
```diff
"remarkConfig": {
"plugins": [
"remark-lint",
+ "remark-lint-table-pipes",
]
}
```
## API
This package exports no identifiers.
The default export is `remarkLintTablePipes`.
### `unified().use(remarkLintTablePipes[, config])`
This rule supports standard configuration that all remark lint rules accept
(such as `false` to turn it off or `[1, options]` to configure it).
There are no options.
## Recommendation
While tables don’t require initial or final delimiters (pipes before the
first and after the last cells in a row), it arguably does look weird.
## Fix
[`remark-gfm`](https://github.com/remarkjs/remark-gfm)
formats all tables with initial and final delimiters.
## Examples
##### `ok.md`

@@ -39,3 +150,3 @@

Note: this example uses [GFM][].
> 👉 **Note**: this example uses GFM ([`remark-gfm`][gfm]).

@@ -56,3 +167,3 @@ ```markdown

Note: this example uses [GFM][].
> 👉 **Note**: this example uses GFM ([`remark-gfm`][gfm]).

@@ -74,56 +185,9 @@ ```markdown

## Install
## Compatibility
This package is [ESM only][esm]:
Node 12+ is needed to use it and it must be `imported`ed instead of `required`d.
Projects maintained by the unified collective are compatible with all maintained
versions of Node.js.
As of now, that is Node.js 12.20+, 14.14+, and 16.0+.
Our projects sometimes work with older versions, but this is not guaranteed.
[npm][]:
```sh
npm install remark-lint-table-pipes
```
This package exports no identifiers.
The default export is `remarkLintTablePipes`.
## Use
You probably want to use it on the CLI through a config file:
```diff
"remarkConfig": {
"plugins": [
"lint",
+ "lint-table-pipes",
]
}
```
Or use it on the CLI directly
```sh
remark -u lint -u lint-table-pipes readme.md
```
Or use this on the API:
```diff
import {remark} from 'remark'
import {reporter} from 'vfile-reporter'
import remarkLint from 'remark-lint'
import remarkLintTablePipes from 'remark-lint-table-pipes'
remark()
.use(remarkLint)
+ .use(remarkLintTablePipes)
.process('_Emphasis_ and **importance**')
.then((file) => {
console.error(reporter(file))
})
```
## Contribute

@@ -169,4 +233,12 @@

[unified]: https://github.com/unifiedjs/unified
[remark]: https://github.com/remarkjs/remark
[mono]: https://github.com/remarkjs/remark-lint
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[skypack]: https://www.skypack.dev
[npm]: https://docs.npmjs.com/cli/install

@@ -176,7 +248,7 @@

[contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md
[contributing]: https://github.com/remarkjs/.github/blob/main/contributing.md
[support]: https://github.com/remarkjs/.github/blob/HEAD/support.md
[support]: https://github.com/remarkjs/.github/blob/main/support.md
[coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md
[coc]: https://github.com/remarkjs/.github/blob/main/code-of-conduct.md

@@ -183,0 +255,0 @@ [license]: https://github.com/remarkjs/remark-lint/blob/main/license

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc