Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

format-md-table

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

format-md-table

Library to format only table elements in Markdown.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

format-md-table

npm version build codecov License

ko-fi

Overview

Library to format only table elements in Markdown.

Notes

Installation

You can install this library using npm:

npm install format-md-table

Usage

import { formatMarkdownTable } from "format-md-table";

const markdownString = `
|Name|Age|Gender|
|-|-|-|
|Alice|30|Female|
|Bob|25|Male|
|Charlie|40|Male|
|David|35|Male|
`;

const formattedMarkdown = formatMarkdownTable(markdownString);
console.log(formattedMarkdown);

API

formatMarkdownTable(markdownString: string = ""): string Formats the markdown tables within the given markdown string.

markdownString (optional): The markdown string to format. If not provided, an empty string is used. Returns the formatted markdown string.

Example

Input:

|Name|Age|Gender|
|-|-|-|
|Alice|30|Female|
|Bob|25|Male|
|Charlie|40|Male|
|David|35|Male|

Output:

| Name    | Age | Gender |
| ------- | --- | ------ |
| Alice   | 30  | Female |
| Bob     | 25  | Male   |
| Charlie | 40  | Male   |
| David   | 35  | Male   |

License

This project is licensed under the MIT License - see the LICENSE file for details.

FAQs

Package last updated on 19 Apr 2024

Did you know?

Socket

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.

Install

Related posts