-
Notifications
You must be signed in to change notification settings - Fork 488
Closed
Labels
Description
/** Represents an HTTP response.
* @typedef {Object} HttpResponse
* @memberof request
* @static
*/
/** Example that doesn't work
* @function
* @param {request.HttpRequest} req - The request object
*/
Here's our current autolink code:
documentation/lib/html_helpers.js
Lines 68 to 75 in 85ff395
function autolink(paths, text) { | |
if (paths.indexOf(slug(text)) !== -1) { | |
return '<a href="#' + slug(text) + '">' + text + '</a>'; | |
} else if (getGlobalExternalLink(text)) { | |
return '<a href="' + getGlobalExternalLink(text) + '">' + text + '</a>'; | |
} | |
return text; | |
} |
Metadata
Metadata
Assignees
Labels
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
developit commentedon Oct 19, 2015
Thanks :)
tmcw commentedon Oct 27, 2015
Depends on #189
tmcw commentedon May 5, 2016
New autolinking approach in v4 fixes this.
dmp42 commentedon Sep 20, 2016
Using documentation 4.0.0-beta10 this is not (yet) working. Should this be reopened?
dmp42 commentedon Sep 20, 2016
Clarifying: the original example works as expected.
If you omit
@static
though:Request
is still listed as a static member ofhttp
httpRequest
(lacking dot)To reproduce:
fix: Update scope for a comment that is memberof an other to defaults…
fix: Update scope to default to static when memberof