Fix self-closing img tag in author section#636
Open
seneca wants to merge 1 commit intonuejs:masterfrom
Open
Conversation
Incomplete img closing tag.
Collaborator
|
HTML5 doesn't care about that slash. There are no real self-closing tags, only void tags, and those just allow the "self-closing" slash. I personally would prefer to just never use Of course the docs should be consistent in the use of that pattern. what do you think? |
Contributor
Author
|
Hi nobkd,
This is a tricky one.
The author emphasises that the framework wants to be as close to the standard as possible.
The closing tag /> is part of the HTML standard.
Should this be differed to the author to decide?
All in all this is a very minor thing anyway.
… On 19 Oct 2025, at 00:01, nobkd ***@***.***> wrote:
nobkd
left a comment
(nuejs/nue#636)
<#636 (comment)>
HTML5 doesn't care about that slash. There are no real self-closing tags, only void tags, and those just allow the "self-closing" slash.
I personally would prefer to just never use /> for void tags (just <void>), as it imitates XML and causes confusion, as real self-closing behavior does not exist on html5 (other than in xml/svg), but that's just my opinion.
Of course the docs should be consistent in the use of that pattern.
what do you think?
—
Reply to this email directly, view it on GitHub <#636 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAAM7FJUY22K42VBG6FT6Q33YLBEPAVCNFSM6AAAAACJSLMXJWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTIMJZGAZTSOJSGE>.
You are receiving this because you authored the thread.
|
Collaborator
|
From the HTML standard:
My opinion on just not using |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Incomplete img closing tag.