I have an overwritten shadow tiddler, say $:/core/images/italic
How can the full original shadow tiddler be copied, without touching the overwrite (such as by e.g temporarily renaming the overwrite so that the shadow “kicks in”, copy it, then rename the overwrite back again)?
I expected the following to work (easily tested here if you if you first overwrite the linked “italic” tiddler and paste the below code into a new tiddler) - but it doesn’t work: It creates a copy of the overwrite, not of the shadow. It seems the elaborate filter shuffling still just transcludes the overwrite, but so how else can the shadow be reached?
\define testCreate()
<$action-createtiddler
$basetitle="ShadowCopy"
$template={{{ [[$:/core/images/italic]shadowsource[]plugintiddlers[]title[$:/core/images/italic]] }}}
/>
\end
<$button actions=<<testCreate>>> Create ShadowCopy </$button>
[[$:/core/images/italic]] [[ShadowCopy]]
BTW, this question is related to How to Compare shadows tiddlers content with tiddler!