-
Notifications
You must be signed in to change notification settings - Fork 96
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
Theodorkl/LSP integration #3347
Conversation
theodorklauritzen
commented
Aug 29, 2024
- Add closing html tag to all opened html tags
- Change some function signatures to make the documentation more uniform and easier to parse.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ℹ️ The html tags <p>
and <li>
(among many others) don't need to be closed in HTML to be valid, this is only required for XHTML/XML. 😉
Ref 👉🏼 Tag omission in text/html
Beside that, nice initiative! 👍🏼
@@ -847,7 +847,7 @@ <h3 id="attribute-match-features-normalized">Attribute match features - normaliz | |||
</p><p> | |||
<code>max( 1-age(name)/maxAge , 0 )</code> | |||
</p><p> | |||
Scales linearly with age, see <a href="#freshness">freshness plot</a>. | |||
Scales linearly with age, see <a href="#freshness">freshness plot</a>.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be closed above, as <p>
taggas cannot be nested.
The P element represents a paragraph. It cannot contain block-level elements (including P itself).
Source: https://www.w3.org/TR/html401/struct/text.html#h-9.3.1
Thank I'll look into that! |
<pre> | ||
http://mysite.mydomain.com:8080/path/shop?d=hab&id=1804905709&cat=100#frag1 | ||
</pre> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the pre elements preserve whitespace, they look better without this indentation
<pre> | |
http://mysite.mydomain.com:8080/path/shop?d=hab&id=1804905709&cat=100#frag1 | |
</pre> | |
<pre> | |
http://mysite.mydomain.com:8080/path/shop?d=hab&id=1804905709&cat=100#frag1 | |
</pre> |
I have started over in a new branch here #3348, and will close this PR |