Semantics question. My page has a 'main' area and an 'aside' (sidebar). Does the sidebar content need to follow the main's heading hierarchy, e.g. start at h2 if the main page has a h1, or is it a separate context? Does any h1-h6 tag make sense in an aside? Thanks.

#html #a11y #webaccessibility

@chris22smith Just like headings in articles and sections the headings in aside elements are part of the document outline for the entire page. It's not a separate context. What you're describing only makes sense for a modal dialog where the rest of the page is inert if the dialog is visible.
@matuzo So I'd treat it like any other section or part of a document? That's a big help, thank you.