-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
JavadocParagraph: violate preceding P tag before block-level HTML tags #15503
Comments
referring to: #15458 (comment)
Here, we should not give violation for |
it should gives violation as it is a paragraph (there is empty line before it), and paragraph must start with P html tag or any other HTML tags that is block-level element (P tag is one of block-level element). |
@rdiachenko , please review issue and place approval label if you agree. |
Apart from that, the issue looks good to me. We might single out block elements into a user-facing property later on, but I agree to keep the check without such an option for now to keep it simple. |
This looks like general html Google practice, lets not do this for this Check. If someone cares so much on this, they will create special Check for this. |
@Zopsss , as you start this issue, please create quick update on Inputs to declare most of cases that come to mind and declaring by violations comments place where violation is expected. Send this PR for review, CI will be red is ok, at least we will align one more time on expected behavior. You meanwhile will start coding and will simply make CI pass, ideally without changes to Inputs. |
From example given in issue description:
"One more possible: after P should be no space" this means that there should be no space immediately after P tag. We have a property for this allowNewlineParagraph which by defaults allows new line after P tag, if we decide not allow for newlines then we need to disable it. From: #15503 (comment)
so do we need to disable allowNewlineParagraph or not as part of this issue? |
This property introduced at #1332 Examples of Checks in website are weird and unlikely to be valid. But it is unrelated problem. We should not change this property, it should continue to allow new line, as some sort of lube wrap, not actually extra space. |
@Zopsss , please send first PR with update for Inputs to define most use cases and behavior on them. We will merge this PR quickly, update for logic most likely will be in review longer. |
I was trying to solve this issue locally, I found some bugs in JavadocParagraph which I would like to report before proceeding further. <?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
<module name="TreeWalker">
<module name="JavadocParagraph"/>
</module>
</module> /**
* Some summary.
*
* <p> Some Javadoc.
*/
public class InvalidParagraphTagPosition {}
We're facing a violation for /**
* Some summary.
*
* <p> Some Javadoc.</p>
*/
public class InvalidParagraphTagPosition {}
This is happening because of different parsing of P tag when it is not closed and when it is closed. AST of above example when
AST when
Notice AST when
and when
when What we have done in Check's implementation is: checkstyle/src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocParagraphCheck.java Lines 147 to 156 in d07072b
we're checking if after This case is only valid when we don't close the This is a critical bug IMO so my question is, how should we proceed with the current issue? should we just continue with this incorrect implementation or we should first fix the implementation and then move forward. Fixing the implementation will take some time and it will be out of scope of this issue, we will need to open another issue for it. @romani @rdiachenko EDIT: I haven't checked the other types of test cases yet so this might affect to broader types of violations. |
this is new bug, please open issue on it. |
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
…ecedes a block tag
Follow up of #15458
From https://github.com/checkstyle/checkstyle/pull/14901/files#r1622428372
https://checkstyle.org/checks/javadoc/javadocparagraph.html#JavadocParagraph
Investigated at :
#15011 (comment) (there are screenshots of javadoc with extra P tag)
7.1.2 Paragraphs rule of google java style guide states that there should not be preceding
<p>
tag for block tags:Whole rule:
We currently have no support to check this, there's also a message explaining this gap in our config at coverage table:
At #15458 (comment), we decided to upgrade JavadocParagraph's implementation and add support to check if a block-level HTML tag is preceded by
<p>
, if it is then give violation for it.How it should work?
This is a list of block-level tags in HTML:
source w3 schools: https://www.w3schools.com/html/html_blocks.asp
We should check if any of such block-level HTML tag is not preceded by
<p>
.Example:
Config:
Output:
Expected output:
The warning is given for the block-level HTML tag, explaining the tag is preceded by
<p>
which is not allowed.Additional context
The coverage table website is generated by
GitHub, generate site
. We have not released new version so the live website does not contain explaining message, you won't be able to see it there.The text was updated successfully, but these errors were encountered: