Episerver always wrap shared block in a tag. I would like to get rid of this. So if in my LinkBlock has a Template with only
<a href="#"
>link</a
>
I would not get a
<div
><a href="#"
>link</a
></div
>
in the view for a user.
If this is not possible how can I change <div
> to any other tag, or put a CssClass on it. Like it is possible in not shared blocks:
<EPiServer:Property runat="server" PropertyName="RightContentArea" CustomTagName="aside" CssClass="column-2 sidebar"
></EPiServer:Property
>