Which will display in the wysiwyg editor like this:
<a href=“./?a=256113”><img src=“./?a=256113” alt=“Bleaching of the rock at Moonlight Falls (2013)” class=“imagethird” /></a>
But when the page is previewed the web paths resolve and we see this:
Yeah matrix parsing engine – through PHP – likely uses a regex that matches ./?a=[0-9], so as JohnGill mentioned, using an id that does not exists or something like ./?a=asset_id_of_image will ensure that the parser won’t match the string and replace it, that should keep it intact for editors to read.
Thanks for your replies. I got around it by replacing the asset id with nnnnn. But now I think about it this may even confuse our editors, I will replace with 9876543 or something. Thank you.