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

drawdown-parser

v1.6.2

Published

Parser for drawdown diagrams in markdown files

Downloads

202

Readme

Drawdown Parser

Parser for Drawdown markup.

Let's say you're typing a lot of documentation in Markdown format and you always feel stupid when you have to draw diagrams in а completely different application, export images and link them back into your Markdown document. That's why this parser exists. Now you can type your diagrams directly in your markdown and with the right tools and plugins your IDE can visualize them in a shmancy-fancy way. On top of the pretty easy diagram creation you will get real versioning of your documentation.

Syntax example

Since this drawdown "language" is a garage invention, we are not going into big details, instead let's look at this example of Flow chart syntax.

In your markdown you can open block code

```drawdown.flow.my-first-diagram

- Hello.
- Do you have problems?
- Yes:
  - Can you do something about them?
  - Yes:
    - Then don't worry.
  - No:
    - Well\. Then don't worry.
- No:
  - Don't worry.

```

With the proper use of the parser and the dedicated drawdown renderer this can produce an interactive SVG diagram which will look something like:

Example diagram

Installation

You can use NPM to install the parser

$ npm install drawdown-parser --save

Usage

Let's say you had already installed the drawdown renderer

$ npm install drawdown-svg-render --save

And let's say somehow you had already extracted the block code for the drawdown scripts. What you can do with the parser is:

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

const script = /* whatever your routine here is */;
const diagramObject = factory('flow').parseText(script);
const renderer = new Renderer();

renderer.render(document.body, diagramObject);

This will render the interactive SVG diagram into the body of your HTML document.

The important bit from the perspective of the parser is:

const diagramObject = factory('flow').parseText(script);

As you see we are using a Parser Factory in order to instantiate our parser. Once we have it we can call the parseText() method to produce the object representation of the diagram.

The above code can be written more verbose like this:

import { factory } from 'drawdon-parser';

/* ... */

const flowParser = factory('flow');
const diagramObject = flowParser.parseText(script);

/* ... */

API

Sorry. It is in TODO.

Demo

Sorry. It is in TODO also.