embed icon indicating copy to clipboard operation
embed copied to clipboard

Embed Figma links

Open norbertbede opened this issue 11 months ago • 1 comments

Would be great implement feature, allow embed figma documents into editor.js

norbertbede avatar Feb 20 '25 14:02 norbertbede

You can add this as custom services

"figma-proto": {
        regex:
            /^(?:https?:\/\/)?(?:www\.)?figma\.com\/proto\/([a-zA-Z0-9]+(?:\/.*)?)$/,
        embedUrl:
            "https://embed.figma.com/proto/<%= remote_id %>?node-id=20-4&p=f&scaling=scale-down&content-scaling=fixed&page-id=0%3A1&embed-host=share",
        html: `<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" allowfullscreen></iframe>`,
        width: 800,
        height: 450,
    },

JhonSJ avatar Sep 10 '25 15:09 JhonSJ