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

rehype-graphviz

v0.3.0

Published

Generate SVG from Graphviz DOT code

Downloads

107

Readme

rehype-graphviz

CI codecov

A rehype plugin to render Graphviz diagrams.

This plugin does:

  1. Generate SVGs from code blocks with graphviz dot language
  2. Replace code blocks with generated SVGs

This plugin uses @hpcc-js/wasm to render SVGs from dot language. It is a port of Graphviz to WebAssembly.

Installation

# npm
npm install rehype-graphviz @hpcc-js/wasm

# pnpm
pnpm add rehype-graphviz @hpcc-js/wasm

# bun
bun add rehype-graphviz @hpcc-js/wasm

Usage

import { unified } from "unified";
import remarkParse from "remark-parse";
import remarkRehype from "remark-rehype";
import rehypeGraphviz from "rehype-graphviz";
import rehypeStringify from "rehype-stringify";
import { Graphviz } from "@hpcc-js/wasm";

const md = `
# Hello World

\`\`\`dot
digraph {
  a -> b
}
\`\`\`
`;

const html = unified()
  .use(remarkParse)
  .use(remarkRehype)
  .use(rehypeGraphviz, {
    graphviz: await Graphviz.load(),
  })
  .use(rehypeStringify)
  .processSync(md)
  .toString();

console.log(html);

Yields:

<h1>Hello World</h1>
<div class="graphviz-diagram" style="overflow: auto;">
  <!--?xml version="1.0" encoding="UTF-8" standalone="no"?-->
  <!-- Generated by graphviz version 9.0.0 (0) -->
  <!-- Pages: 1 -->
  <svg width="62pt" height="116pt" viewBox="0.00 0.00 62.00 116.00" xmlns="http://www.w3.org/2000/svg"
    xmlns:xlink="http://www.w3.org/1999/xlink">
    <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 112)">
      <polygon fill="white" stroke="none" points="-4,4 -4,-112 58,-112 58,4 -4,4"></polygon>
      <!-- a -->
      <g id="node1" class="node">
        <title>a</title>
        <ellipse fill="none" stroke="black" cx="27" cy="-90" rx="27" ry="18"></ellipse>
        <text text-anchor="middle" x="27" y="-85.8" font-family="Times,serif" font-size="14.00">a</text>
      </g>
      <!-- b -->
      <g id="node2" class="node">
        <title>b</title>
        <ellipse fill="none" stroke="black" cx="27" cy="-18" rx="27" ry="18"></ellipse>
        <text text-anchor="middle" x="27" y="-13.8" font-family="Times,serif" font-size="14.00">b</text>
      </g>
      <!-- a&#45;&gt;b -->
      <g id="edge1" class="edge">
        <title>a->b</title>
        <path fill="none" stroke="black" d="M27,-71.7C27,-64.41 27,-55.73 27,-47.54"></path>
        <polygon fill="black" stroke="black" points="30.5,-47.62 27,-37.62 23.5,-47.62 30.5,-47.62"></polygon>
      </g>
    </g>
  </svg>
</div>

Options

graphviz

@phcc-js/wasm/graphviz's Graphviz instance.

  • See: https://hpcc-systems.github.io/hpcc-js-wasm/getting-started.html

  • Example:

    import { Graphviz } from "@hpcc-js/wasm/graphviz";
    const options = {
      graphviz: await Graphviz.load(),
    };
  • Type:Graphviz

langAssociations

Language associations.

  • Default value:

    {
      dot: ["graphviz"];
    }
  • Example:

    Generage graphviz diagram from graphviz, graphviz-diagram, and graphviz-dot language code blocks:

    const options = {
      langAssociations: {
        dot: ["graphviz", "graphviz-diagram", "graphviz-dot"],
      },
    };
  • Type:

    Readonly<{
      dot?: readonly string[];
    }>;

tagName

Tag name for the container element of the graphviz diagram.

  • Default value: "div"

  • Example:

    const options = {
      tagName: "figure",
    };

    Yields:

    <figure>
      <svg>...</svg>
    </figure>
  • Type: string

properties

Properties to be added to the container element of the graphviz diagram.

  • Default value:

    {
      className: "graphviz-diagram",
      style: "overflow: auto;",
    }
  • Example:

    const options = {
      properties: {
        className: "graphviz",
        style: "overflow: clip;",
      },
    };

    Yields:

    <div class="graphviz" style="overflow: clip;">
      <svg>...</svg>
    </div>
  • Type: Properties

~~className~~ (deprecated)

[!WARNING] Use properties.className instead. When both are set, properties.className will be used.

Class name to be added to the container element of the graphviz diagram.

  • Default value: "graphviz-diagram"

  • Example:

    const options = {
      className: "graphviz",
    };

    Yields:

    <div class="graphviz-diagram graphviz">
      <svg>...</svg>
    </div>
  • Type: string

~~style~~ (deprecated)

[!WARNING] Use properties.style instead. When both are set, properties.style will be used.

Style to be added to the container element of the graphviz diagram.

  • Default value: "overflow: auto;"

  • Example:

    const options = {
      style: "overflow: clip;",
    };

    Yields:

    <div style="overflow: clip;">
      <svg>...</svg>
    </div>
  • Type: string

postProcess

Post processing function for rendered SVG element.

  • Default value: (svg) => svg

  • Example:

    // Replace black and white colors with currentColor and background-primary
    // for dark mode support.
    const options = {
      postProcess: (svg) =>
        svg
          .replaceAll(/("#000"|"black")/g, `"currentColor"`)
          .replaceAll(/("#fff"|"white")/g, `"var(--background-primary)"`),
    };
  • Type: (svg: string) => string

    • Parameters:
      • svg: SVG element as string
    • Returns: post processed SVG element as string

Development

Commands

| Command | Description | | ----------------------------- | ------------------------- | | bun install | Install dependencies | | bun run build | Build the project | | bun run test | Run tests with watch mode | | bun run check | Lint and format | | npm publish --access public | Publish to npm |

This project was created using bun init in bun v1.0.7. Bun is a fast all-in-one JavaScript runtime.

Publishing

  1. Update version in package.json
  2. commit with tag vX.X.X
  3. push to GitHub

License

MIT License © 2023-2024 rai