2.0.1 • Published 3 years ago

drawdown-svg-render v2.0.1

Weekly downloads
11
License
ISC
Repository
github
Last release
3 years ago

Drawdown Svg Render

D3 based renderer which renders parsed drawdown diagrams.

Installation

$ npm install drawdown-svg-render --save

Usage

In order to use the renderer we need to parse our drawdown script into an object representation. We can achieve this by using the drawdown parser package

$ npm install drawdown-parser

Once we have all dependencies installed, we can do:

import { factory } from 'drawdown-parser';
import { Renderer } from 'drawdown-svg-render';

let script = `- Hello.
- Do you like diagrams?
- Yes:
  - You are cool.
- No:
  - You need some coffee.`

let diagramObject = factory('flow').parseText(script);
let renderer = new Renderer();
renderer.render(document.body, diagramObject);

This will render interactive SVG diagram editor into the body of our HTML document. The editor will contain a diagram which will look something like this:

Example diagram

The editor will let us pan and zoom the diagram, move the nodes around and define the style of the arrows.

The actual look of the diagram will depend highly on our CSS rules. The Renderer itself does not provide any styling.

API

Sorry. It is in TODO.

Demo

Sorry. It is in TODO also.

2.0.1

3 years ago

2.0.0

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago