documentation-generation

Can LaTeX be used for producing any documentation that accompanies software? [closed]

别来无恙 提交于 2019-12-03 02:02:28
问题 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 . Although related to this question about LaTeX being used outside mathematics and academia, I'm specifically wondering if anyone uses or is familiar with anyone that uses LaTeX for generating any type of documentation relating to software. If so, could you say whether or not you like LaTeX and the purposes for

Swift Documentation Comments

女生的网名这么多〃 提交于 2019-12-03 01:59:45
问题 I have a few questions about Swift documentation comments. Is there anyway to make a Related declarations section like some of the Apple documentation has. For example, when I option+click the tablewView(_:heightForRowAtIndexPath:) method, it links me to 3 other related methods within the generated documentation. Is there any warning tag in swift? I know in objective-c it allowed you to do @warning and get a bolded warning in the documentation that is generated. However, :warning: does

Using sphinx to auto-document a python class, module

点点圈 提交于 2019-12-02 20:30:06
I have installed Sphinx in order to document some python modules and class I'm working on. While the markup language looks very nice, I haven't managed to auto-document a python code. Basically, I have the following python module: SegLib.py And A class called Seg in it. I would like to display the docstrings of the class and module within the generated sphinx document, and add further formatted text to it. My index.rst looks like this: Contents: .. toctree:: :maxdepth: 2 chapter1.rst and chapter1.rst : This is a header ================ Some text, *italic text*, **bold text** * bulleted list.

Creating html doc from postman collection [closed]

匆匆过客 提交于 2019-12-02 18:10:32
I've developed a pretty extense API, and I have it on Postman, which works pretty nice. Now I have to generate an html doc to keep it versioned inside /docs along with my sources. Is there a tool or a way to achieve this? I really don't want to write all this documentation. Sharing the postman collection is not an option. I recently had the same problem and I did not find anything. So I created a simple tool to do it. It is a very basic javascript application written with react.js. At the moment it is very basic, but I'm working on it, so any feature request is welcome. You can use it for free

Documenting namespaces with Doxygen

岁酱吖の 提交于 2019-12-02 18:03:39
I'm having issues with Doxygen recognizing namespaces and modules. I believe the issue surrounds whether to place the \addtogroup within the namespace or outside the namespace. Example 1, outside the namespace: /*! * \addtogroup Records * @{ */ //! Generic record interfaces and implementations namespace Records { //! Describes the record interface class Interface; } // End namespace Records /*! @} End of Doxygen Groups*/ Example 2 - within namespace //! Generic record interfaces and implementations namespace Records { /*! * \addtogroup Records * @{ */ //! Describes the record interface class

how to generate api documentation [closed]

回眸只為那壹抹淺笑 提交于 2019-12-02 17:58:25
I need to write some api documentation for a REST API that I've created. Are there tools that will stub out a nice html output similar in style to the underscore api documentation? Or perhaps something that will output something as a twitter bootstrap styled html? I see that docco does annoated code, but I'm actually just looking to document the API only. Ideally I'd like to point a tool at the controller file and have it generate documentation about the methods and routes but not show any source code unless I specifically call out examples. apiDoc creates a documentation from API annotations

How do I prevent the GitHub Pages “Automatic Generator” to remove everything before regenerate the site?

若如初见. 提交于 2019-12-02 17:38:53
I created a wonderful GitHub Pages website for my little project , and I added some other pages into the gh-pages branch. My problem is that, everytime I regenerate the website from 'Settings=>Automatic Page Generator', everything is cleaned up and I have to restore the files manually. Is there a way to prevent, or work around this? It would have been much better if the Automatic Generator was just overwriting his stuff without removing existing files. Checkout the gh-pages branch. mkdir _layouts move index.html to _layouts edit _layouts/index.html replace the the inner html of the contents

What is the relationship between docutils and Sphinx?

眉间皱痕 提交于 2019-12-02 17:35:27
There seems to be a plethora of documentation tools for Python. Another one that I've run across is epydoc. It seems like Sphinx is the de facto standard, because it's used to generate the official Python docs. Can someone please sort out the current state of Python's documentation tools for me? epydoc and Sphinx are different types of tools. They are the same in that they: Both use ReST via docutils . Both are very Pythonic in their focus Both can generate HTML and PDF documentation They are different in their focus. Epydoc is focused on API (Developer) documentation. You get more results

Can LaTeX be used for producing any documentation that accompanies software? [closed]

China☆狼群 提交于 2019-12-02 17:11:37
Although related to this question about LaTeX being used outside mathematics and academia , I'm specifically wondering if anyone uses or is familiar with anyone that uses LaTeX for generating any type of documentation relating to software. If so, could you say whether or not you like LaTeX and the purposes for which you use it? Thanks. I mostly write academic papers with LaTeX. However, my research has to do with software documentation, so I actually deal with some of these concerns. The best thing about LaTeX is that you are concerned with content and structure, not just visual layout. This

Sphinx for php code documentation [closed]

╄→尐↘猪︶ㄣ 提交于 2019-12-02 16:39:07
Sphinx is a Python library to generate nice documentation from a set of ReST formatted text files. Not the tool used for full-text searching I'm also fully aware of doxygen / phpdoc tools. I'm trying to figure out if there is a way of using Sphinx to document php projects? or even any other non-python languages? http://sphinx.pocoo.org/ Sphinx and ReST can be used as generic documentation tools, in my experience. There's nothing about Sphinx which obligates you to only use it for Python-based projects. For example, in my work, I've used it to build a user guide and an XML-RPC API reference. In