It appears that it is trying to do something, but I can't get it to work correctly. For example, here is the SVG I tried putting in:
<svg height="36.04998779296875" width="120.66667175292969">
<defs>
<filter height="160%" width="160%" y="-30%" x="-30%" id="shadow-ee3be6fc-b344-a035-312d-9f497a448c8c">
<feGaussianBlur result="glow" stdDeviation="4 4"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
</feMerge>
</filter>
</defs>
<text style="font-size: 19.2pt; filter: url(#shadow-ee3be6fc-b344-a035-312d-9f497a448c8c); fill: #ff8040" y="25">Type here</text>
<text style="font-size: 19.2pt;" y="25">Type here</text>
</svg>
If you run this, you will see that there is the black "Type here" text with an ever so slight orange highlight behind some of the words. I'm figuring I'm just doing this not in the way Prince was programmed to expect it. Can you specify what form I am supposed to use (or make this way work) to get filtered text behind and offseted from the original text?
<svg height="36.04998779296875" width="120.66667175292969">
<defs>
<filter height="160%" width="160%" y="-30%" x="-30%" id="shadow-ee3be6fc-b344-a035-312d-9f497a448c8c">
<feGaussianBlur result="glow" stdDeviation="4 4"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
<feMergeNode in="glow"/>
</feMerge>
</filter>
</defs>
<text style="font-size: 19.2pt; filter: url(#shadow-ee3be6fc-b344-a035-312d-9f497a448c8c); fill: #ff8040" y="25">Type here</text>
<text style="font-size: 19.2pt;" y="25">Type here</text>
</svg>
If you run this, you will see that there is the black "Type here" text with an ever so slight orange highlight behind some of the words. I'm figuring I'm just doing this not in the way Prince was programmed to expect it. Can you specify what form I am supposed to use (or make this way work) to get filtered text behind and offseted from the original text?