While working on some older projects, I found a WIP that I set aside when I couldn’t quite figure it out, and figured I could turn to the community for a possible solution.
The specific question is, how would you show specific text only in the storyriver tiddler is and only show specific text in the sidebar.
For example, lets say I have a tiddler titled ‘Placeholder’ with the tags “$:/tags/SideBar” and I want it to show Hello
only in the sidebar and if it is in the storyriver, it should show the text “Goodbye”.
So, if both the Placeholder sidebar tab is selected AND the tiddler is open in the storyriver, the story river tiddler should show “Goodbye” and the sidebar should only show “Hello” but not show both in either of them.
Unfortunately I’ve only figured out how to show the text of both if they are open in their respective places using:
<$list filter="[[$:/StoryList]contains[Placeholder]]">
Hello
</$list>
<$list filter="[prefix[$:/state/tab/sidebar]text[Placeholder]]">
Goodbye
</$list>
Is there a different way I should be approaching this?