Jared White
Jared White
@joeldrapper I've gotten a variation of this working in Bridgetown as well! Repo: https://github.com/jaredcwhite/test-bt-and-phlex ([component here](https://github.com/jaredcwhite/test-bt-and-phlex/blob/main/src/_components/phlex_it.rb), [ERB template](https://github.com/jaredcwhite/test-bt-and-phlex/blob/main/src/index.md), [page with "inline phlex"](https://github.com/jaredcwhite/test-bt-and-phlex/blob/main/src/phlex-this.rb)) Demo: https://test-bt-and-phlex.onrender.com/ The rendering support is [added here](https://github.com/jaredcwhite/test-bt-and-phlex/blob/main/plugins/site_builder.rb)...
Just pushed up some of the changes suggested by @ashmaroli
FWIW, we had to make a breaking change to support Liquid 5. https://github.com/bridgetownrb/bridgetown/pull/224 Seems that for conditionals (aka in the `where` filter), `''`, `blank`, and `empty` are now all equivalent,...
It doesn't seem like Solargraph's formatting is honoring Rubocop's `Exclude` list. Even if a file is excluded and `bundle exec rubocop` reports no errors, Solargraph still wants to run the...
Just jumping in here as @jonsgreen and I am working on this together. So…if I can reiterate what you're saying @gettalong to make sure we understand: we can write some...
@gettalong So it doesn't seem like the value of `lang` gets passed to the formatter. In this line: https://github.com/gettalong/kramdown/blob/bd678ecb59f70778fdb3b08bdcd39e2ab7379b45/lib/kramdown/converter/syntax_highlighter/rouge.rb#L33 `ruby?{1,3-5}` isn't actually available within `opts`. So we'd need to write...
@sudeeptarlekar Not yet unfortunately. I'm essentially working on a third-party plugin system for Kramdown at this point (to better support things like GFM, mark tags, and other additions). Hopefully the...
Thanks for the reply @gettalong — I figured it'd be something that maybe could arrive eventually…under no illusion that's anytime soon. 😄
YARD + Solargraph = \*chef's kiss\*
I like file-based routing with placeholders along those lines for server-rendered code paths where you do expect to process incoming params a lot and figure out what to do from...