In my Angular 7 application, I have an html with nested tags like this -
<p i18n="@@footerText">Some Text Here
<a i18n="@@footerLink" href="http://url.com" target="_blank">Link Text</a>
Another Text Here
</P>
When executing following command
ng xi18n --output-path translate
It throws an error -
Error: Could not mark an element as translatable inside a translatable section
How to use i18n with nested tags?