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

markdown-it-easy-tables

v0.1.1

Published

Markdown tables, easy to read and write.

Downloads

12

Readme

markdown-it-easy-tables

build status npm version npm downloads MIT license

Welcome to markdown-it-easy-tables! 🎉

This markdown-it plugin makes tables in Markdown both easy to write and easy to read.

Convert Markdown like this...

```table
Rank    City           Country         Population (millions)   Attractions
-       -              -------         -:                      ---------------------
1       Paris          France          2.2                     Eiffel Tower, Louvre Museum
2       Tokyo          Japan           14.0                    Tokyo Tower, Shibuya Crossing
3       Rome           Italy           2.9                     Colosseum, Vatican City
4       Sydney         Australia       5.4                     Sydney Opera House, Bondi Beach
5       New York City  United States   8.4                     Statue of Liberty, Times Square
```

... into HTML like this🪄

Table of Contents

🎁 Advantages

  • Intuitive. Write tables easily with a simple and intuitive syntax.
  • Readable. Create visually appealing and easy-to-read tables.
  • Headers. Header rows are optional and easy to configure.
  • Align Columns. Adjust column alignments for neat and organized tables.
  • Supports Inline Markdown. Support for most inline markdown like emphasis, code, or links
  • Works with Markdown Extensions. Integrate with Markdown extensions in your code editor.

💿 Installation

$ pnpm add markdown-it-easy-tables

Use it as a markdown-it plugin in your JavaScript:

var md = require('markdown-it')()
            .use(require('markdown-it-easy-tables'))

Or use it with many Markdown extensions (many use markdown-it under the hood) in your favorite code editor (like VSCode).

📝 Usage Rules

The basics:

  1. Fencing: Wrap your tables with the table fence.
  2. Column Spacing: Simply use 2+ spaces to separate columns.
  3. Headers: Underline the first row to mark it as a header.
  4. Inline Markdown: Feel free to use inline markdown for emphasis, code, and more.

In more detail:

1. Fencing

Wrap your tables with the table fence. This can be done using either backticks or tildes.

```table
```

or

~~~table
~~~

2. Column Spacing

Separate each column with 2+ spaces for easy readability. The first row dictates the column boundaries for the whole table.

```table
Column1    Column2    Column3
Data1      Data2      Data3
```

3. Headers

Mark the first row as a header by underlining it in the second row. You can use dashes -, colons :, or a combination of both to denote alignment. Check out these examples for guidance:

Default   Alignment   With   Dashes
-------   ---------   ----   ------

Right   Align   Columns
----:   -:      ---------:

Center  Align   Columns
:----:  :-:     :

Left  Align   Columns
:---  :-      :--------

Minimum   Underline   Length  Is  1
-         -           -       -   -

4. Inline Markdown

Your tables can still have all the perks of Markdown. Feel free to use inline markdown for your data.

```table
**Bold Text**   *Italic Text*
`Code Snippet`  [Link Text](#)
```

🙌 Acknowledgements

Big shout-out to the following projects that made markdown-it-easy-tables possible:

👥 Related Projects

You might also want to check out these similar projects:

📜 License

This project is MIT licensed.