Carlo Beltrame

Results 257 comments of Carlo Beltrame

As the @mtarld wrote a year ago, symbok does not support php 8. The last commit to symbok was made 2 years ago, and the help from @mtarld never arrived...

As a workaround, I was able to create this small extension that fixes the issue: ```js import {GapCursor} from 'prosemirror-gapcursor' import {Extension} from '@tiptap/core' const GapCursorFocus = Extension.create({ onFocus({ editor...

Originally posted by @sipec: > Another workaround: after `focus()` do [createParagraphNear()](https://tiptap.dev/api/commands/create-paragraph-near) which will add a new empty paragraph node and focus it if the currently focused node is a block...

PDF internal links are already supported, although not documented: https://github.com/diegomura/react-pdf/blob/master/packages/examples/src/goTo/index.js Something you won't be able to do this way is also auto-generate the correct target page numbers to render into...

I think there is no way to gain access to the page number and render it into the document, because theoretically, rendering the page number could necessitate a re-layouting of...

Wow, does that really work? Why is the table of contents rendered after all of the other components, do you have your table of contents last in your pdf? If...

I already fixed this in #1917. We just have to wait for a release of react-pdf which includes this.

@diegomura seems to be on vacation or something. But the bug was introduced in @react-pdf/renderer v2.3.0, so you can pin to v2.2.0 for now until a new version is released....

This was fixed and published with [@react-pdf/[email protected]](https://github.com/diegomura/react-pdf/releases). Does the fix not work for you @christopherromero? If it does, this issue could be closed.

Does it help if you `await Font.load({ fontFamily: 'Yantramanav', fontWeight: 400 })` after registering the font? This has helped in some other cases where a font would sometimes not render...