-
Notifications
You must be signed in to change notification settings - Fork 51
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
add support for @requires and @member #36
Changes from 3 commits
ee3b6db
bb455ac
9ce28dc
b4843e2
e14cda9
16c81d4
fae1391
3b2632f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{{#moduleName}}{{moduleName}}.{{/moduleName}}{{#className}}{{className}}.{{/className}}{{name}}({{#paramsString}}{{paramsString}}{{/paramsString}}) {{#version}}{{version}}{{/version}} | ||
{{#className}}{{className}}.{{/className}}{{name}} {{#version}}{{version}}{{/version}} | ||
----------------------------- | ||
{{#description}} | ||
{{{description}}} | ||
|
@@ -10,16 +10,20 @@ Deprecated: {{{deprecated}}} | |
{{/deprecated}} | ||
{{#hasParams}} | ||
**Parameters** | ||
|
||
{{/hasParams}} | ||
``` | ||
{{#params}} | ||
**{{name}}**: {{#typesString}}{{typesString}}, {{/typesString}}{{#description}}{{{description}}}{{/description}} | ||
{{name}}: {{#typesString}}{{typesString}}, {{/typesString}}{{#description}}{{{description}}}{{/description}} | ||
|
||
{{/params}} | ||
``` | ||
{{/hasParams}} | ||
{{#fires}} | ||
**Fires**: {{.}} | ||
|
||
{{/fires}} | ||
{{#returns}} | ||
**Returns**: {{#typesString}}{{typesString}}, {{/typesString}}{{#description}}{{{description}}}{{/description}} | ||
**Returns**: {{#typesString}}{{typesString}}{{/typesString}} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any particular reason to remove the description? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not removed, it's useful: {{#returns}}
{{/returns}} |
||
``` | ||
{{#description}}{{{description}}}{{/description}} | ||
``` | ||
{{/returns}} |
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.
@mrjoelkemp looks like we need that way to customize the templates rather sooner than later.