SvanteRichter
SvanteRichter
Thanks for the quick reply!!! > Does postgresqlServer.socketDir equal C:\Users\surface\Downloads\db\socket? Yes, it does. Hmm, trying with host: ```js const sql = postgres({ host: postgresqlServer.socketDir, user: 'surface', password: 'surface' }) ```...
The manual screenshots are from 2.2.13 too, so we should probably tackle that at the same time.
Well, description is still working as expected in master, and is quite useful so I hope it sticks around. Still, having the showcases example have the keys be a bit...
Yeah, most string filters output strings, not twig objects. The hacky way to do this would be `{{ l('reed our creed')|striptags|capitalize }}`, but then you loose the mark tags. I...
@xiaohutai That'll transform the whole string, right? So not the same as |capitalize, right? Usually capitalizing a whole string is a stylistic choice, but capitalizing the first letter is an...
Yeah, the site routing.yml takes higher precedence than the extension added routes. This is also the reason for https://discuss.bolt.cm/d/6-routing-for-sitemap-while-using-pagebinding. It isn't really an issue with this extension, but it could...
Which bolt version are you on?
Yeah, something like that would probably work well. Another route (if trying to keep the down the complexity of the server codebase and make it work with js-only sites) would...