Marcus Whybrow
Marcus Whybrow
Still an issue with tailwind `v3.4.1` and modd `v0.8`
> Same with modd master? If I have time I'll look into the master build. > Try this `daemon: tailwind --watch --output ./build/tailwind.css < /dev/stdin` Issue persists.
Wow, that did it! Great thinking, I had no idea stdin was both needed, and didn't exist.
Sorry, only used tailwind with `modd`, (inside [Nix](https://nixos.org/) [develop](https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-develop)).
I'm interested in web worker support too. I have ~500 pages and I always display all results: calling `result.data()` in a tight loop. This creates UI jank I alleviate partly...
> A quick solution could be to return the hash, alongside others data, when the record is created. This is exactly what I need too. In my project I have...
Hi @bglw Given the ID de-duplication restrictions you mention, it's fine for my use case to leave `addHTMLFile` as is in favor of this new `index.getIndexCatalogue()`. So long as I...
As a user story, my initial developer ergonomics expectation was that `search(null)` would return `{ results }` that each had some `id` that pointed "back" to the indexed content given....
@bglw > the unknown prefix there is actually the language 😆 Cheers. I've sent you PR #719 with two minor additions to the getting stared docs re the `lang` attribute...
#371 proposes a solution, but in the meantime here's my workaround. I just parse the HTML myself! 😄 ```js import { parse } from "node-html-parser"; // JSDOC was running out...