ReRender Engine

Lightweight PlantUML to SVG rendering for web projects.

Live Playground

Common Questions

How do I integrate the library?

You can import the library as an ES module:

import { renderPlantUMLToSvg } from '../js/render.min.js';

What is the basic usage?

The library exports renderPlantUMLToSvg. It takes a PlantUML string and returns an SVG string:

const svg = renderPlantUMLToSvg(pumlString, 'sequence');
container.innerHTML = svg;