All Projects β†’ geekplux β†’ Markvis

geekplux / Markvis

Licence: mit
make visualization in markdown. πŸ“ŠπŸ“ˆ

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Markvis

Grav Plugin Admin
Grav Admin Plugin
Stars: ✭ 316 (-79.06%)
Mutual labels:  markdown, markdown-to-html, markdown-editor
Markdown
πŸ“–Clean & Modern MarkDown Generator, πŸ”ŒOffline Support and Easy Generation of Markdown βš‘οΈβš›οΈ https://github.com/JP1016/Markdown-Electron/releases
Stars: ✭ 170 (-88.73%)
Mutual labels:  markdown, markdown-to-html, markdown-editor
Markitdown
πŸ“± A React app to preview and edit Markdown✍. You can also export it as HTML.
Stars: ✭ 26 (-98.28%)
Mutual labels:  markdown, markdown-to-html, markdown-editor
Markdown-for-Documentation
Markdown is a HTML compatible language used for Documentation.
Stars: ✭ 14 (-99.07%)
Mutual labels:  markdown-editor, markdown-to-html, markdown-it
Mditor
πŸ“ [ M ] arkdown + E [ ditor ] = Mditor
Stars: ✭ 523 (-65.34%)
Mutual labels:  markdown, markdown-to-html, markdown-editor
Marker
πŸ–Š A gtk3 markdown editor
Stars: ✭ 644 (-57.32%)
Mutual labels:  markdown, markdown-to-html, markdown-editor
Macdown
Open source Markdown editor for macOS.
Stars: ✭ 8,855 (+486.81%)
Mutual labels:  markdown, markdown-to-html, markdown-editor
Bookeditor
Stars: ✭ 86 (-94.3%)
Mutual labels:  markdown, markdown-editor
Diffract
A set of d3 based visualization components built for React
Stars: ✭ 87 (-94.23%)
Mutual labels:  chart, d3
C3
πŸ“Š A D3-based reusable chart library
Stars: ✭ 9,163 (+507.22%)
Mutual labels:  chart, d3
Nodeppt
This is probably the best web presentation tool so far!
Stars: ✭ 9,589 (+535.45%)
Mutual labels:  markdown, markdown-it
Hypermd
A WYSIWYG Markdown Editor for browsers. Break the Wall between writing and previewing.
Stars: ✭ 1,258 (-16.63%)
Mutual labels:  markdown, markdown-editor
Ember C3
πŸ“ˆ Ember addon library for C3, a D3-based reusable chart library.
Stars: ✭ 81 (-94.63%)
Mutual labels:  chart, d3
React Charts
βš›οΈ Simple, immersive & interactive charts for React
Stars: ✭ 1,302 (-13.72%)
Mutual labels:  chart, d3
Markdownmonster
An extensible Markdown Editor, Viewer and Weblog Publisher for Windows
Stars: ✭ 1,203 (-20.28%)
Mutual labels:  markdown, markdown-editor
Markdown Electron
βš›οΈElectron version of Markdown app
Stars: ✭ 99 (-93.44%)
Mutual labels:  markdown, markdown-editor
Ac D3
Javascript Library for building Audiovisual Charts in D3
Stars: ✭ 76 (-94.96%)
Mutual labels:  chart, d3
Susnote
Susnote is a notebook which support markdown, UML and Chart.
Stars: ✭ 97 (-93.57%)
Mutual labels:  chart, markdown-editor
Foam
A personal knowledge management and sharing system for VSCode
Stars: ✭ 10,993 (+628.5%)
Mutual labels:  markdown, markdown-editor
Just Dashboard
πŸ“Š πŸ“‹ Dashboards using YAML or JSON files
Stars: ✭ 1,511 (+0.13%)
Mutual labels:  chart, d3

logo

Markvis

Make visualization in markdown.

NPM version NPM downloads Build Coverage donate FOSSA Status

Preview

Quick Start

Install

yarn add markvis --save
npm install markvis --save

Usage

const md = require('markdown-it')()
const vis = require('markvis')
const d3 = require('d3')  // in browser environment
const d3node = require('d3-node') // in node environment

md.use(vis).render(`
  your markdown content
`, {
  d3,    // in browser environment
  d3node // in node environment
})

there are Examples which in node environment.

Motivation

We often publish articles enriched with data, since data make them more convincing and easy to interpret. Hence, techniques that enable the embedding of visualization into texts are of great importance.

However, the most frequently used method now is to export charts as images, upload them into cloud, and then paste them into the editor. It is a tedious process from the perspective of a writer. Besides, image loading costs much more time than that of DOM elements, which leads to poor experience from the perspective of a reader.

API

There are many options you can config and below is some in common. But you'd better to config the options which related to chart style in chart options, such as markvis-bar, markvis-line, markvis-pie.

options

data
  • Type: Array

Data from file or web processed by d3 library.

d3
  • Type: Object

d3 library which used in browser environment.

d3node
  • Type: Function

d3-node constructor which used in node environment.

layout
  • Type: String

Name of chart layout. You can customize any chart layout you want.

render
  • Type: Function

Customized renderer to render a new layout you want.

container
  • Type: String
  • Default: <div id="container"><h2>Bar Chart</h2><div id="chart"></div></div>

DOM contained the visualization result.

selector
  • Type: String
  • Default: '#chart'

DOM selector in container.

style
  • Type: String
  • Default: ''

Chart style.

width
  • Type: Number
  • Default: 960

SVG width for chart.

height
  • Type: Number
  • Default: 500

SVG height for chart.

margin
  • Type: Object
  • Default: { top: 20, right: 20, bottom: 20, left: 20 }

Margin of the first wrapper in SVG, usually used to add axis.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

LICENSE

markvis Β© geekplux, Released under the MIT License.
Authored and maintained by geekplux with help from contributors (list).

geekplux.com Β· GitHub @geekplux Β· Twitter @geekplux

FOSSA Status

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].