Jared White
Jared White
@steffans @bennypowers I was able to get something like this working, but it feels like a bit of a hack. Given input `arr` prop of `[1,2,3]`: ```js globalThis.arrStr = `${arr.join(",...
OK, after poking around some more, maybe this is a more canonical approach…at least it feels less hacky: ```js function joinedArr(input) { return input.join(", "); } Values: ... ```
Thanks for the inquiry! I'm not a Vim user myself, so I'm not exactly sure what would entail setting up a plugin for highlighting. I can look into it at...
@brandondrew Serbea is indeed like ERB in that it allows arbitrary Ruby code execution. Which is fine for a typical codebase use case, but not when you need to provide...
@aspirisen There's no persistent process, it's a single execution to get the response back.
@aspirisen Honestly not sure! What should happen in a catch clause here? 🤔
Seeing the same thing. There was always a section here or there that was flaky, now most of the site just won't load. 😕
@marcoroth @joeldrapper This dovetails into a separate project I've been slowly working on to transform HTML that has certain configurable directives…for example, in a Vue-style configuration, `` would render out...
(Could be tricky with things like lists, where a single `` tag with directives in its content would need to be duplicated and expanded out for n items in an...
> If PhlexML is the final target, you can always do the transformations in Nokogiri first, then run it through Phlexing. Interesting…I could essentially inject ERB into the markup via...