All Projects → donatj → Csvtomarkdowntable

donatj / Csvtomarkdowntable

Licence: mit
Simple JavaScript/Node.js CSV to Markdown Table Converter

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Csvtomarkdowntable

Pytablewriter
pytablewriter is a Python library to write a table in various formats: CSV / Elasticsearch / HTML / JavaScript / JSON / LaTeX / LDJSON / LTSV / Markdown / MediaWiki / NumPy / Excel / Pandas / Python / reStructuredText / SQLite / TOML / TSV.
Stars: ✭ 422 (+69.48%)
Mutual labels:  markdown, csv
Sq
swiss-army knife for data
Stars: ✭ 275 (+10.44%)
Mutual labels:  markdown, csv
Uxdm
🔀 UXDM helps developers migrate data from one system or format to another.
Stars: ✭ 159 (-36.14%)
Mutual labels:  markdown, csv
J
❌ Multi-format spreadsheet CLI (now merged in http://github.com/sheetjs/js-xlsx )
Stars: ✭ 343 (+37.75%)
Mutual labels:  markdown, csv
Startup Matrix
Startup Matrix exported to CSV, JSON, Markdown and HTML formats. Credits to original article by Eric Stromberg.
Stars: ✭ 66 (-73.49%)
Mutual labels:  markdown, csv
Sonar Cnes Report
Generates analysis reports from SonarQube web API.
Stars: ✭ 145 (-41.77%)
Mutual labels:  markdown, csv
Gotenberg
A Docker-powered stateless API for PDF files.
Stars: ✭ 3,272 (+1214.06%)
Mutual labels:  markdown, csv
Adr Tools
Command-line tools for working with Architecture Decision Records
Stars: ✭ 3,073 (+1134.14%)
Mutual labels:  markdown
Toonote
小兔笔记:Markdown 内置数据 跨平台 加密存储
Stars: ✭ 247 (-0.8%)
Mutual labels:  markdown
Webdevstudyresources
[Resource List] Courses and info I've found most helpful
Stars: ✭ 238 (-4.42%)
Mutual labels:  markdown
Web
A free, open-source, and completely encrypted notes app. https://standardnotes.com
Stars: ✭ 3,061 (+1129.32%)
Mutual labels:  markdown
Fullstackpython.com
Full Stack Python source with Pelican, Bootstrap and Markdown.
Stars: ✭ 2,667 (+971.08%)
Mutual labels:  markdown
Cookbook
Code snippets for various programming languages and libraries
Stars: ✭ 245 (-1.61%)
Mutual labels:  csv
Vscode Paste Image
paste image from clipboard to markdown/asciidoc directly!
Stars: ✭ 236 (-5.22%)
Mutual labels:  markdown
Pine
A modern, native macOS markdown editor
Stars: ✭ 2,818 (+1031.73%)
Mutual labels:  markdown
Docfx
Tools for building and publishing API documentation for .NET projects
Stars: ✭ 2,873 (+1053.82%)
Mutual labels:  markdown
Clrs
📚 Solutions to Introduction to Algorithms Third Edition
Stars: ✭ 3,230 (+1197.19%)
Mutual labels:  markdown
Osu Wiki
home of the osu! wiki
Stars: ✭ 246 (-1.2%)
Mutual labels:  markdown
Gatsby Remark Embedder
Gatsby Remark plugin to embed well known services by their URL.
Stars: ✭ 245 (-1.61%)
Mutual labels:  markdown
Eslint Plugin Markdown
Lint JavaScript code blocks in Markdown documents
Stars: ✭ 242 (-2.81%)
Mutual labels:  markdown

CSV To Markdown Table

npm version npm Build Status Coverage Status GitHub license

Simple JavaScript CSV to Markdown Table Converter

You can see it in action and play with the Live Example.

Requires no external libraries. Works in Node as well as in the browser.

Example Use:

csvToMarkdown( "header1,header2,header3\nValue1,Value2,Value3", ",", true);

Outputs:

| header1 | header2 | header3 | 
|---------|---------|---------| 
| Value1  | Value2  | Value3  | 

Which displays in markdown as:

header1 header2 header3
Value1 Value2 Value3

Notes

A well done CSV to JIRA Confluence Wiki Markup fork is maintained here: https://github.com/terriann/CsvToPlainTextTable

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].