Jared White
Jared White
Need to look into it (I might have spotted a problem)
Feeds for specific tags would be groovy.
In Bridgetown 2.0 beta 2, an absolute URL might output as `http://0.0.0.0:4000/2024/08/action-web-components/` which doesn't work as you can't directly connect to a 0.0.0.0 URL. And in a related issue, we...
Getting the printed `inspect` output in a console of a Collection is rather gnarly. We could probably do better…something more concise and also more informative.
Some new goodies in the codebase, courtesy of #881. Needs documentation.
Due to #888, new Bridgetown projects will be ERB by default. This means the existing documentation which often presumes Liquid by default will be confusing to new users. We need...
Currently we're including `Bridgetown::Filters` in the `Bridgetown::RubyTemplateView::Helpers` object. That brings over a whole bunch of methods which really only seem useful (and not always idiomatic Ruby) in a Liquid template....
The current esbuild configuration is using CommonJS rather than ESM (aka `require` rather than `import` statements). To align with the future of Node and the JavaScript ecosystem, we should switch...
I got warnings that both `fiddle` and `rdoc` had to be added to the Gemfile because they won't be in future Ruby 3.5 stdlibs. Not sure yet what that's all...