# markdown-table-template

> tiny lib for creating markdown table templates from number of rows and columns

Latest version **1.0.1** (published 2016-02-05) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install markdown-table-template
pnpm add markdown-table-template
yarn add markdown-table-template
bun add markdown-table-template
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-02-05 |
| First published | 2016-02-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | dennis iversen |
| Maintainers | diversen |
| Keywords | markdown, table |

## Links

- npm: https://www.npmjs.com/package/markdown-table-template
- Repository: https://github.com/diversen/markdown-table-template
- Homepage: https://github.com/diversen/markdown-table-template#readme
- Issues: https://github.com/diversen/markdown-table-template/issues
- npm.io page: https://npm.io/package/markdown-table-template

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2016-02-05
- 1.0.0 — 2016-02-04

## README

# Readme

tiny js lib for creating markdown table templates from number of rows and columns.

example: 

Node-like systems: 

    var mdtable = require("markdown-table-template");

Browser: 

    // <script src = "dist/mdtable.js"></script>

    console.log(mdtable.create(0,0)); // nothing
    console.log(mdtable.create(1,1)); // 1 row and 1 col
    console.log(mdtable.create(3,7)); // 3 rows and 7 cols

yields: 

    |0:0|

    |0:0|0:1|0:2|
    |---|---|---|
    |2:0|2:1|2:2|
    |3:0|3:1|3:2|
    |4:0|4:1|4:2|
    |5:0|5:1|5:2|
    |6:0|6:1|6:2|
    |7:0|7:1|7:2|

---
_Source: https://npm.io/package/markdown-table-template · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
