Leandro Pereira
Leandro Pereira
Essentially it only supports `@inner_content` in the root level: `{:else if node.tag === "eex" && node.content[0] === "@inner_content"}` as proven in this test https://github.com/BeaconCMS/beacon/blob/6f0e4ffdb9a9e03ccc6b6fce424e828075a6e1af/test/beacon/template/heex/json_encoder_test.exs#L464-L488 But it falls into `{:else if...
Hi @shahryarjb ! Yep I do remember that code :) Please give this a try: https://gist.github.com/leandrocp/d63df13712393af61807a9cbe306ee98 - Fixed `unescape/1` - Updated `opts` - `unsafe_` can be `unsafe` now - Disabled...
> Personally I'd probably show the button to delete it not when hovering but when it's selected. That goes along the pattern i'm implementing in which, for drag and drop,...
Additional info from Slack from Javier Guerra: "more than nothing trying to make the visual editor work under authentication with dynamic data based on the session Like, we have this...
> The issue is that neovim doesn't automatically lock the session however locking it manually unlocks it immediatly. Only happens with nvim I'm having this exact same issue, which started...
In the meantime I'm using autocmds to lock/unlock: ```lua local function zellij(mode) vim.schedule(function() if vim.env.ZELLIJ ~= nil then vim.fn.system({ "zellij", "action", "switch-mode", mode }) end end) end vim.api.nvim_create_autocmd({ "FocusGained", "BufEnter"...
Should we leave docs recommending to disallow /admin or whatever path you chose for the admin interface? If the admin was mounted in the same app. It doesn't block bots...
There are 2 issues with bumping `:tailwind` version: 1. That's a breaking change that impose the same change to users' projects. Better to keep `~> 0.2` for now (which doesn't...
> Could there be a separate CRUD for adding live components as well? It would be great to have the ability to add them without needing to restart the app....