documentation

What is the correct way to document a **kwargs parameter?

雨燕双飞 提交于 2019-12-03 01:26:27
问题 I'm using sphinx and the autodoc plugin to generate API documentation for my Python modules. Whilst I can see how to nicely document specific parameters, I cannot find an example of how to document a **kwargs parameter. Does anyone have a good example of a clear way to document these? 回答1: I think subprocess-module's docs is a good example. Give an exhaustive list of all parameters for a top/parent class. Then just refer to that list for all other occurrences of **kwargs . 回答2: After finding

How do I link between markdown documents in doxygen?

允我心安 提交于 2019-12-03 01:23:50
I have a project with a set of markdown pages that are interlinked with links such as [Go to this page](subdir/MyOtherPage.md) The pages all get picked up by doxygen and appear in the output, but the links are not altered to point to their new html renditions. I could change the links to point to the html pages, but my project is hosted on github and then those links would become broken since github supports linking between markdown pages automatically. I can't see anything in the doxygen documentation about supporting links other than external ones. Is there any way to make doxygen produce an

How do I use the old javadoc style / theme with JDK 7?

心不动则不痛 提交于 2019-12-03 01:23:15
The new theme in JDK 7 for javadoc is hard for me to read. It may not be pretty but I really would prefer the old theme. Aside from installing the old JDK and switching between them, can I somehow use the old doclet? Have to admit I haven't experienced this yet, but I've found that you can customize the CSS for the java doc. Here is the description. You might be interested in running this: C:> javadoc -stylesheetfile C:\user\exampleStylesheet.css com.examplePackage Its also stated there that it creates 'stylesheet.css' file so you should see how it looks like and what can be overridden there.

Inherit documentation in C#?

烈酒焚心 提交于 2019-12-03 01:14:39
From Java and Eclipse I'm used to @inheritDoc that allows to use the same documentation as in the base class/method. How can I accomplish something similar in C# and Visual Studio 2010? It doesn't exist in vanilla VS. Your best bet is ghostdoc or similar. This is available in the Extension Manager, or here Even this question is a few years old and it was specifically for Visual Studio 2010. For all those that land here by Google, I would like to add an answer that I found and that holds true for Visual Studio 2015 in combination with Sandcastle Help File Builder (SHFB): /// <inheritdoc/> can

Are there any real alternatives to reStructuredText for Python documentation? [closed]

空扰寡人 提交于 2019-12-03 00:53:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I'm starting an open source Python project shortly and I'm trying to decide in advance how to write my docstrings. The obvious answer would be using reStructuredText and Sphinx with autodoc, because I really like the idea of simply properly documenting my code in my docstrings then have Sphinx automatically

Where can I find information about Javascript engine internals? [closed]

半世苍凉 提交于 2019-12-03 00:51:09
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I'm looking for books / articles / papers on Javascript engine internals along the lines of the many reference works about the JVM internals, CLR internals, etc. I could (and likely will) look at the source code for JavaScriptCore and V8/Chromium, but if there's a book out there or some other "guided tour"

Advanced documentation for node.js developer [closed]

自作多情 提交于 2019-12-03 00:33:46
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Recently our team is working on a new project with node.js. It is not difficult to start working with node.js. But now we're all just start to use this new technique and have little experience in such event-based development. So I am wondering if there are any books, blogs or other materials covering the topics

Taking over a project - What should I ask the previous programmer? [closed]

丶灬走出姿态 提交于 2019-12-03 00:16:33
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 4 years ago . I'm taking over a development of a commercial web site. This site was developed over two years by another programmer. It's mostly a one-man job (maintain and expand the site). I'll have a 2-3 days transition period when the other programmer will show me the system. But from

documentation for STL [closed]

孤者浪人 提交于 2019-12-02 23:17:47
I have spent the last several years fighting tooth and nail to avoid working with C++ so I'm probably one of a very small number of people who likes systems programming and template meta programming but has absolutely no experience when it comes to the STL and very little C++ template experience. Does anyone know of a good document for getting started using STL? I'd prefer PDF or something else I can kill trees with and I'm looking for something more along the lines of a reference than a tutorial (although an 80/20 split would be nice there). I ended up using the docs from here , pringing them

Company insists on using a binary format for all our documentation [closed]

前提是你 提交于 2019-12-02 23:10:09
I work at a company that, for some reason, insists that all our development documentation should be in MS Word format. Which, being a binary format, means we cannot: Diff versions of a document against each other (so peer reviewing them is a pain - because of the domain we work in, peer reviews for all changes are essential) Grep a folder-full of documents for keywords What do you use to write documentation in and why? Please also give me ammo to change this situation with... benjismith I recently started using DocBook XML to author my documentation. On the upside, it's a pure text format. You