Elian Doran

Results 147 comments of Elian Doran

> just tried disabling all gnome extensions shadow use and that makes trilium launch without problem.... but anyways gonna post the logs in the next message Quite interesting. Can you...

@PaulCodeFun , here are my notes while developing https://github.com/TriliumNext/Notes/, might be useful to you. To be imported into Trilium. [Notes for old development.zip](https://github.com/user-attachments/files/17355434/Notes.for.old.development.zip)

Probably too late but I ran into a similar issue so maybe it might help other people looking for an answer. The solution is to keep a reference to the...

I would need this feature as well. As a workaround, I had to rewrite the filter to escape spaces to `%20`, based on https://github.com/mixmark-io/turndown/pull/474. ```typescript function buildImageFilter() { const ESCAPE_PATTERNS...

@fireflysemantics , this happens because unlike `highlightjs`, the `@highlightjs/cdn-assets` npm packages does not come bundled with types for TypeScript. To bypass this, an easy way is to simply copy the...

Should be OK now as there have been many IME improvements on CKEditor side.

@LorenAmelang , from what I see in the logs it appears that the root cause for the errors you are seeing is that the communication between the server (which is...

Implemented export as PDF in [TriliumNext](https://github.com/TriliumNext/Notes/pull/1091).

I had a similar issue in React as well. Whenever the size of the container changed, I would resize and fit it: ```js const width = useElementSize(containerRef); useEffect(() => {...