documentation

How do I use Unicode characters in Pod and perldoc?

三世轮回 提交于 2020-01-10 12:10:32
问题 I need to use utf-8 characters in my perl-documentation. If I use: perldoc MyMod.pm I see strange characters. If I use: pod2text MyMod.pm everything is fine. I use Ubuntu/Debian. $ locale LANG=de_DE.UTF-8 LC_CTYPE="de_DE.UTF-8" LC_NUMERIC="de_DE.UTF-8" LC_TIME="de_DE.UTF-8" LC_COLLATE="de_DE.UTF-8" LC_MONETARY="de_DE.UTF-8" LC_MESSAGES="de_DE.UTF-8" LC_PAPER="de_DE.UTF-8" LC_NAME="de_DE.UTF-8" LC_ADDRESS="de_DE.UTF-8" LC_TELEPHONE="de_DE.UTF-8" LC_MEASUREMENT="de_DE.UTF-8" LC_IDENTIFICATION=

How do the Mogenerator parameters work, which can I send via Xcode? [closed]

久未见 提交于 2020-01-10 06:13:06
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . The help for Mogenerator is very minimal. What do all the parameters do? 回答1: Parameters that work both via the command line utility and Xcode: --base-class : The name af the base class which the "private class" (e.g. _MyObject.h ) will inherit from. This will also add an import

How do I get rid of the “Release 1” in the Page Header of the Sphinx Latex Output?

狂风中的少年 提交于 2020-01-10 05:22:05
问题 I'm using the "manual" document class of Sphinx and I'm quite happy with how the Latex Output looks like, except for the page header. It contains the title of my paper, as well as a "Release 1". Since I'm writing a paper and not a documentation, I clearly don't need the release information. Unfortunately, it is very hard to find information on how to customize Sphinx latex output. Does somebody know how to do it? 回答1: To suppress the release info at the top of your Latex output, you need to

Azure: SKU property value for Automation Account, where are centralized Template Docs? [closed]

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-07 05:12:14
问题 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 2 years ago . I'm trying to deploy a Resource Group that includes an Azure Automation Account. One of the parameters in the parameters.json file is called automationAccounts_DSCAutomationAccount_sku . Putting an arbitrary string as its value results in an InvalidTemplate error: The provided value for the template parameter

sphinx, kivy and autodoc: warning and issues to create documentation

纵饮孤独 提交于 2020-01-07 03:52:14
问题 I would like to create documentation of my code in Sphinx. I installed everything and made some simple trial that worked fine. (I run sphinx-quickstart, edit the conf.py to include modules' path, work with a tutorial to know how sphinx works etc. etc.) Yet, my code import many kivy libraries. And when I want to create the documentation on module that import kivy, it fails. For instance, if I have my main.py like this: #!/usr/bin/python # -*- coding: utf-8 -*- from kivy.app import App def test

Markdown for automatic doc generation? [closed]

折月煮酒 提交于 2020-01-07 02:37: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've use javadoc, as well as a variety of different XML based doc-generation systems. Javadoc is fine, XML based doc-generators are hideous, with the XML getting all over the comments and turning the comments into soup. I've looked at markdown, and the fact that it is easily parseable into structured data but also

Link to external mainpage

我与影子孤独终老i 提交于 2020-01-05 13:18:53
问题 I have made a Doxygen documentation, which itself references another documentation using the tag-file mechanism. But inside its mainpage I now would like to link to the mainpage of the external documentation. Of course, I can always specify the file directly: ... uses [OtherDoc](../../../OtherProject/doc/html/index.html) for ... even more so since the projects are located relative to each other. But nevertheless I would like Doxygen to automate this process, since it needs to know the

Can I programmatically export class diagrams from Visual Studio 2008?

落爺英雄遲暮 提交于 2020-01-04 09:18:32
问题 I can export a class diagram as an image from Visual Studio by right-clicking on the surface and choosing "Export Diagram as Image..." Is there a way to do this through command line? I'd like to be able to generate all of my class diagrams as images so I can include it in the .chm I am building w/ Sandcastle. 回答1: Found it after a full day of searching. In case anyone ever comes across this again: Two ways to do this: Microsoft.VisualStudio.Modeling.Diagrams.Diagram.CreateBitmap() lets you

Using C# Attributes and documentation

左心房为你撑大大i 提交于 2020-01-04 06:25:09
问题 Let's consider the following source code. /// <summary> /// This is a method I would like to document /// </summary> /// <param name="param1">Description for param1</param> /// <param name="param2">Description for param2</param> /// <returns>See Type1</returns> [Api(1)] public Type1 Method1( [ApiParam(Name = Names.Name1, IsRequired = true)] string param1 string param2 ) { ... } /// <summary> /// This is a method I would like NOT to document /// </summary> public void Method2() { ... } My

can csharp classes “inherit” the xml documentation like java classes can?

半城伤御伤魂 提交于 2020-01-04 03:52:52
问题 i'm adding comments to some csharp code, and i'm using the xml language provided by .net (or something). i have an interface, and some implementing classes. i have one method in the interface, and it has a comment. in the implementing classes there is no comment on the implementing method. when one does it like this in java, javadoc automagically uses the interface comment when generating documentation. however, now that i build my project, i get the warning (transalted from swedish, sorry)