first of all... thanks for the help.
I have in my Blogger template certain Anchor elements that I have to convert to another element type because I have problems with a JS code and I can't find another way besides changing the element.
It has helped me to change from <a>
to <p>
and place inside it onclick="location.href = '#link';"
instead of href="#link"
(it does almost the same function):
Before: <a href="#link">clickme</a>
After: <p onclick="location.href = '#link';">clickme</p>
But how could I do this on a element if the link is obtained through a part of code that is only understood by the Blogger API?
It would look something like this:
<a expr:href='data:post.url'><data:post.title/></a>
And convert it to:
<p onclick="location.href = 'data:post.url';"><data:post.title/></p>
But so far, I don't know what it takes to make it work...