TfTHacker / obsidian42-strange-new-worlds

Revealing the strange new world of connected thoughts in your vault.

Home Page:https://tfthacker.com/SNW

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Feature request] Show SNW indicators in PDF export

koenbunders opened this issue · comments

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

Thanks!

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.)

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.