Tagged Questions
7
votes
2answers
533 views
Commenting JavaScript functions á la Python Docstrings
It is valid JavaScript to write something like this:
function example(x) {
"Here is a short doc what I do.";
// code of the function
}
The string actually does nothing. Is there any reason, ...
-2
votes
2answers
55 views
Parsing python docstring from javascript
I need to parse docstring from several python files and I need to do this with Javascript.
I couldn't find any reference for this, any ideas?
EDIT: I'm working with Titanium SDK and jquery. PyDoc is ...