Jonas Söderberg

Results 4 comments of Jonas Söderberg

Something that worked for me is to just add the line ``` $this->dompdf = new \DOMPDF(); ``` before loading the html in the load() function. This will recreate the DOMPDF...

I've ended up in the same rabbit hole as everyone else it seems, trying to get the dataview results into the graph. Here's a crude Templater javascript that I use...

@Cammagno Here are the js functions in the mean time. Just replace manually, I guess: findLinks: ```javascript findLinks(view, linkSlices) { const settings = app.plugins.plugins["frontmatter-links"].settings; let externalLinkFrom; let externalLinkTo; for (let...

This is trickier than I thought. Mostly gotten multi-link parsing to work in `findLinks()` using the following code (no guarantee that it's stable): ```javascript const pattern = /\[\[?([^\[\|]+?)(?:(?:\||\]\(())([^\[\(]+?))?(?:\]\]|\))/gm; let start...