Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Noticed that my blog is showing the udi attributes for media in my HTML. This was fixed from looking at this Github issue: https://github.com/umbraco/Umbraco-CMS/issues/2921
Maybe I misconfigured something?
Url: https://mattou07.net/posts/a-basic-front-end-build-for-umbraco-or-any-web-application/
Additionally my Macros are leaving html comments
<!-- <?UMBRACO_MACRO macroAlias="codeInserter" and leaving classes in the divs:
<!-- <?UMBRACO_MACRO macroAlias="codeInserter"
<div class="umb-macro-holder codeInserter umb-macro-mce_2 mceNonEditable">
Any ideas on how I can hide these? Let me know what additional details are needed. Thanks!
having the same udi issue in 7.12.5 — did you find a solution, mattou07?
I have not emi :(
Hallo Mattou07
I can see you a using a Macro, is it a custom made one?`
Anyhow, i have the same problem on my 8.15.x solution, where my Custom RTE macro showed the links as UDI data attr.
The solution to fix it is to let the MacroParameter run toughte the htmldecoder and then EnsureInternalLinks, like this
@Html.Raw(htmlLocalLinkParser.EnsureInternalLinks(HttpUtility.HtmlDecode(Model.MacroParameters["content"].ToString())))
Emi for umbraco 7 it is looking like this:
@using Umbraco.Web.Templates string html = Templates.TemplateUtilities.ParseInternalLinks(rteGridValue, UmbracoContext.Current.UrlProvider); @Html.Raw(html)
hope i works for both of you
Thanks so much Lucas, I'll follow up when I've had the chance to test!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Umbraco 8.5.3 showing data-udi attribute in HTML
Noticed that my blog is showing the udi attributes for media in my HTML. This was fixed from looking at this Github issue: https://github.com/umbraco/Umbraco-CMS/issues/2921
Maybe I misconfigured something?
Url: https://mattou07.net/posts/a-basic-front-end-build-for-umbraco-or-any-web-application/
Additionally my Macros are leaving html comments
<!-- <?UMBRACO_MACRO macroAlias="codeInserter"
and leaving classes in the divs:Any ideas on how I can hide these? Let me know what additional details are needed. Thanks!
having the same udi issue in 7.12.5 — did you find a solution, mattou07?
I have not emi :(
Hallo Mattou07
I can see you a using a Macro, is it a custom made one?`
Anyhow, i have the same problem on my 8.15.x solution, where my Custom RTE macro showed the links as UDI data attr.
The solution to fix it is to let the MacroParameter run toughte the htmldecoder and then EnsureInternalLinks, like this
Emi for umbraco 7 it is looking like this:
hope i works for both of you
Thanks so much Lucas, I'll follow up when I've had the chance to test!
is working on a reply...