The HTML tag 'details' misses its indicator when viewing the articleIssue A knowledge article is edited using the source button and extra HTML code is inserted: <details><summary>123</summary><p>456</p></details> This generates a panel which can be opened/closed using an indicator. Depending on the browser/OS this indicator is not visible.CauseDifferent CSS in the page affects the marker and hides it.ResolutionYou can add some CSS to force the indicator to appear. Add this to the start of the page (again via the source option in the rich-text editor): <style>details > summary {display: list-item;}</style>