; Indent the contents of an element; pull the end tag — and the close of a ; multi-line start/self-closing tag — back to the element's column. Mirrors the ; jsx rules. Void elements (`
`, ``) are single-line `element`s, so the ; tail-scoped indent is a no-op for them. [ (element) (script_element) (style_element) ] @indent (end_tag) @outdent (start_tag ">" @outdent) (self_closing_tag "/>" @outdent) ;