To create links inside your NodeTemplate that match the native RadSiteMap appearance, you need to use the correct HTML and CSS Class. For that you need to:
• Wrap your link text in an <a> tag.
• Assign the rsmLink CSS class, which is used by RadSiteMap for its native links.
• Bind the href attribute to your data field (like DocsLink or DemoLink).
If you want to show both Docs and Demo links:
<NodeTemplate>
<a class="rsmLink"
href='<%# DataBinder.Eval(Container.DataItem, "DocsLink") %>'>Docs
</a>
<a class="rsmLink"
href='<%# DataBinder.Eval(Container.DataItem, "DemoLink") %>'>Demo
</a>
</NodeTemplate>
This ensures that the node items have the proper styles applied to them.