TfTHacker / obsidian42-strange-new-worlds

Revealing the strange new world of connected thoughts in your vault.
https://tfthacker.com/SNW
MIT License
432 stars 13 forks source link

[Feature request] Show SNW indicators in PDF export #108

Closed koenbunders closed 4 months ago

koenbunders commented 1 year ago

I'd love to be able to toggle between Show SNW indicators in PDF export , or not.

Thanks!

scorchio commented 8 months ago

I had a similar issue - normally in PDF exports, I don't want to see the SNW indicators. A workaround is adding a CSS snippet in Obsidian's Options → Appearance, with a CSS override like this:

@media print {
    .snw-reference {
        display: none;
    }
}

(PDF export uses the print style sheets as expected, it seems.)

TfTHacker commented 4 months ago

Thank you for this solution. I will incorporate it into the plugin, as it appears unlikely that most users would prefer to have the reference counts displayed.