Eric Wang
Eric Wang
Same question...
I did something yesterday with `ox-confluence-en`, like: ```elisp (defun org-confluence-en-special-block (special-block contents info) (let ((block-type (downcase (org-element-property :type special-block)))) (if (member block-type '("ai" "note")) (org-confluence-en--block "text" "Confluence" (concat (upcase block-type)...
seems like the apheleia not loaded? i just add this in my config.el, works well now: ```elisp (use-package! apheleia) ``` My doom version is: 4d072ce888577b023774460f6036abefcd0a1fa6
> I've tried your solution, it's not working on the latest doom version @lroolle try doom sync and doom build
Mount the `~/.claude` directory into your container and perform manual authentication the first time. Run `claude login`, open the OAuth URL in your browser, and paste the generated token back...
this env settings works for me
> > this env settings works for me > > I tried this and my experience got better but after a while (probably 20mins of use - just hitting yes...
might same with org mode ``` [[https://x.com][*bold X*]] ✅ [[https://x.com][no bold x]] ✅ [[*bold X*]] ❌ [[page link][*bold page*]] ❌ *[[page link][Page Title]]* ✅ ``` it seems like it's hard...
I found the process stuck in `parseMarkdown`. > https://github.com/mendableai/firecrawl/blob/06189b96465134ee98e32d696e841dcb5fc2c5b8/apps/api/src/lib/html-to-markdown.ts#L53 --- To temporarily resolve this, try using the Go markdown parser; it worked for me. .env: ``` USE_GO_MARKDOWN_PARSER=true ```
I’m using the playwright-service-ts with the /scrape URL, and it works for me. ``` # .env PLAYWRIGHT_MICROSERVICE_URL=http://playwright-service:3000/scrape # docker-compose.yml services: playwright-service: build: apps/playwright-service-ts ... ```