I am trying to create a sitemap for my application. Since I can not use the Sitemap generator.
I want to show something like this:
<url> <loc> http://www.fff.com </loc> </url> <url> <loc> http://www.fff.com/blog/23442 </loc> </url>
That way I can copy and read in an XML file. I tried something like this:
<code ngNonBindable> <url> <loc> http://www.fff.com/blog/23442 </loc> </url> </code>
This will only be displayed: http://www.fff.com/blog/23442
.
Anyway, can I achieve this?
source share