-
Notifications
You must be signed in to change notification settings - Fork 3
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
Change autogenerated Javadoc for Tiers #81
Comments
Ffs ... Okay, I will remove the tag for now. It will be easier to deal with this later |
I merged a fix but the issue is not solved, I will find an alternative later when more urgent issue are done |
There are more Javadoc errors that stop the deploymnet (mvn does not tell you all at once).
|
So:
is it correct? |
@carlosuc3m can you actually point to a piece of code to correct / an example. I don't understand well the issue |
Ha got it, the charactere in the JavaDoc need to be replace by code charactere |
Yess sorry. Basically in javadocs there are some characters reserved for certain things that cannot be used. For example this line uses
The line is: It should be
So the mvn javadoc plugin recognises it |
I made a PR, the JavaDoc look like nothing but hopefully its ok |
In this line
Instead of do |
Also we might need javadoc for Javacpp xd, lets see |
Also I am trying right now if it works but there is a difference between html and non-html You can do but you cannot do |
I simply did a full character replacement, if it work I am fine and we will see later for a cleaner writing |
That would be annoying |
It builds the javadoc now without any issue 🥳 |
Not urgent but for later, what can I use instead of the |
It looks like it: |
HEllo @StRigaud ,
Deployment seems to be almost ready but I am finding an error generating the JAvadoc, which is required to deploy to scijava.
The tag
@see
cannot be used together with links. The Tier generator uses it for every tier:clesperantoj_prototype/src/main/java/net/clesperanto/kernels/Tier1.java
Line 27 in f40abd4
The link needs to be embedded in html:
instead of
@see https://clij.github.io/clij2-docs/reference_absolute
we need to use
@see <a href="https://clij.github.io/clij2-docs/reference_absolute">reference_absolute</a>
The text was updated successfully, but these errors were encountered: