Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

<col> elements within a <colgroup> are getting indented incorrectly #836

Closed
marcushellberg opened this issue Jan 4, 2016 · 2 comments
Closed
Milestone

Comments

@marcushellberg
Copy link

Col elements within a <colgroup> get indented incorrectly.

Input:
<colgroup><col><col><col></colgroup>

Expected:

<colgroup>
  <col>
  <col>
  <col>
</colgroup>

Actual:

<colgroup>
  <col>
    <col>
      <col>
</colgroup>
@bitwiseman
Copy link
Member

Same thing happens with <li> elements right now as well.

@bitwiseman bitwiseman added this to the v1.6.0 milestone Jan 14, 2016
@bitwiseman
Copy link
Member

Here's the list of all the optional tags.

https://www.w3.org/TR/html5/syntax.html#optional-tags

A real solution will require understanding all these. In the short term, it probably makes sense to just pick the most used ones, like li and col.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants