Skip to content

docs(README): remove invalid attribute from closing </td> tag#186

Open
LeSingh1 wants to merge 1 commit into
openai:mainfrom
LeSingh1:docs-fix-malformed-td-tag
Open

docs(README): remove invalid attribute from closing </td> tag#186
LeSingh1 wants to merge 1 commit into
openai:mainfrom
LeSingh1:docs-fix-malformed-td-tag

Conversation

@LeSingh1

Copy link
Copy Markdown

README.md line 20 has:

</td align="center">

HTML closing tags can't carry attributes. The matching opening <td align="center"> two lines above already specifies the alignment, so the dangling attribute on the close tag is just dead syntax.

GitHub's lenient renderer tolerates it today, but strict HTML validators (and most editors' HTML linting) flag it. One-character-level fix:

-            </td align="center">
+            </td>

Docs-only, one line. No behaviour change in the GitHub rendering.

Line 20 of README.md had `</td align="center">` — HTML closing tags
cannot carry attributes, and the matching opening `<td align="center">`
two lines above already specifies the alignment. GitHub's renderer
tolerates the malformed tag today, but it's plainly wrong and trips
strict HTML validators.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant