Otherprops attribute value not getting added to the genereated html tag.
I have a dita topic which has a paragraph element having below attributes
<p id="p1" otherprops="otherprops-value" platform=" platform-value" product="product-value">Topic2 first paragraph</p>
When I generate aem site for the dita topic. I can see platform and product attribute getting added on the html element as data-platform=" platform-value" data-product="product-value" but otherprops attribute doesn't gets added.
<div class="p wrapper"><div data-platform=" platform-value" data-product="product-value" id="GUID-4d2c4a5e-69bf-4217-9a6f-64b6581c0ed3_t2p1" class="p"><div style="display: inline;">Topic2 first paragraph</div></div></div>
How can I enable otherprops also to be added as an attribute to element of the generated html?