- When I pull an article using GET /articles/{id}, the HTML looks properly formatted with Intercom's wrapper divs and spacing
- When I push the exact same content back using PUT /articles/{id}, Intercom's API automatically modifies the HTML and removes empty <p class="no-margin"></p> elements
- This breaks the visual spacing and layout that was working before
- Before API call: <p>Content</p><p class="no-margin"></p><p>More content</p> (proper spacing)
- After API call: <p>Content</p><p>More content</p> (no spacing, content runs together)