<a href=> tag is not getting on publish environment
I am facing issue with <a href=> html tag which is not getting on publish/dispatcher page and link is disappearing, please find below affected html.
<div class="c-error-page__error-content__error-description" data-sly-test="${data.errorDescription}">${data.errorDescription @context="html"}</div>
<sly data-sly-list.item="${data.links}" data-sly-test="${data.links}">
<a class="c-error-page__error-content__btn-white" href="${item.linkURL}" data-sly-test="${item.linkText}">${item.linkText}</a>
</sly>
</div>
i have authored link URL and text on page component and it's showing in jcr node of page but class applied for <a> tag and authored URL link it's not getting on publish environment, please find below affected page source html.
<div class="c-error-page__error-content__error-description"><p>Page not found.</p>
</div>
Go to Homepage
</div>
This issue is working fine on my local and lower dev (author/publish) environment but facing issue on production publish environment.
I am not sure why it's not working to specific publish environment, can you please give me some inputs.