We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
{@param name}
[name]
I see this pattern, copied from Java.
Before:
/** * Some summary. * * Another summary about {@param someParam}. */ fun foo() = Unit
Here's my requested output:
/** * Some summary. * * Another summary about [someParam]. */ fun foo() = Unit
There are some other patterns like {@code, {@see, {@attr-name, {@inheritDoc}, but I'm not sure how to handle all of them.
{@code
{@see
{@attr-name
{@inheritDoc}
Tested with v1.5.5 using default options.
The text was updated successfully, but these errors were encountered:
1.5.7: Bug fixes (Windows line separators), convert @param references
0ee6ad9
1.5.7 fixes the following bugs: - #76: Preserve newline style (CRLF on Windows) - #77: Preformatting error - #78: Preformatting stability - #79: Replace `{@param name}` with `[name]`
4210d68
This should be implemented in 1.5.7.
Sorry, something went wrong.
No branches or pull requests
I see this pattern, copied from Java.
Before:
Here's my requested output:
There are some other patterns like
{@code
,{@see
,{@attr-name
,{@inheritDoc}
, but I'm not sure how to handle all of them.Tested with v1.5.5 using default options.
The text was updated successfully, but these errors were encountered: