Skip to content

olliethedev/html-to-figma

 
 

Repository files navigation

html-to-figma-auto-layout

Converts DOM nodes to Figma nodes with extended support for auto-layouts.

Modified fork of https://github.com/sergcen/html-to-figma which was inspired by https://github.com/BuilderIO/figma-html

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);

About

Convert DOM node to Figma node

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 78.3%
  • HTML 18.3%
  • JavaScript 3.4%