Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
markmap-lib
Advanced tools
Visualize your Markdown as mindmaps.
This project is heavily inspired by dundalek's markmap.
Node.js >= 10 is required.
$ yarn add markmap-lib
# or
$ npm install markmap-lib
See markmap-cli for command-line usage.
Transform Markdown to markmap data:
import { transform, getUsedAssets, getUsed } from 'markmap-lib/dist/transform';
// 1. transform markdown
const { root, features } = transform(markdown);
// 2. get assets
// either get assets required by used features
const { styles, scripts } = getUsedAssets(features);
// or get all possible assets that could be used later
const { styles, scripts } = getUsed(features);
Now we have the data for rendering.
Render a markmap from transformed data:
Create an SVG element with explicit width and height:
<script src="https://cdn.jsdelivr.net/npm/markmap-lib/dist/browser/view.min.js"></script>
<svg id="markmap" style="width: 800px; height: 800px"></svg>
Render a markmap to the SVG element:
// We got { root } data from transforming, and possible extraneous assets { styles, scripts }.
const { Markmap, loadCSS, loadJS } = window.markmap;
// 1. load assets
if (styles) loadCSS(styles);
if (scripts) loadJS(scripts, { getMarkmap: () => window.markmap });
// 2. create markmap
Markmap.create('#markmap', null, root);
// or pass an SVG element directly
const svgEl = document.querySelector('#markmap');
Markmap.create(svgEl, null, data);
FAQs
Visualize your Markdown as mindmaps with Markmap
The npm package markmap-lib receives a total of 3,224 weekly downloads. As such, markmap-lib popularity was classified as popular.
We found that markmap-lib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.