html-figma

Convert DOM node to Figma Node

Usage no npm install needed!

<script type="module">
  import htmlFigma from 'https://cdn.skypack.dev/html-figma';
</script>

README

html-figma

WORK IN PROGRESS

Converts DOM nodes to Figma nodes.

Inspired by figma-html.

DEMO: https://www.figma.com/community/plugin/1005496056687344906/html-to-figma-DEV-plugin

Example: /dev-plugin

npm i html-figma

USAGE

Browser

import { htmlTofigma } from 'html-figma/browser';

const element = document.getElementById('#element-to-export');

const layersMeta = await htmlTofigma(element);

Figma

import { addLayersToFrame } from 'html-figma/figma';

const rootNode = figma.currentPage;

await addLayersToFrame(layersMeta, rootNode);