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
import { htmlTofigma } from 'html-figma/browser';
const element = document.getElementById('#element-to-export');
const layersMeta = await htmlTofigma(element);
import { addLayersToFrame } from 'html-figma/figma';
const rootNode = figma.currentPage;
await addLayersToFrame(layersMeta, rootNode);