How to link an URL inside the them from the Diazo rules file?
问题 If an URL to a image is set in a HTML template, then the URL is updated to reference files inside the theme folder. For example, <img src="image.png" /> is replaced by: <img src="http://localhost:8080/mysite/++theme++mytheme-theme/image.png" /> However, if I write following Diazo rule: <replace css:content="#some-class"> <div id="#some-class"><img src="image.png" /></div> </replace> the URL of the image is not update. How can I write Diazo rules where the image gets correctly referred. I want