XML documentation?
See original GitHub issueMy biggest hurdle of using imgui is the lack of built in documentation. I know that the end of line comments in imgui.h
are all over the place and probably not always useful without a context, but it would be extremely helpful to convert a line like this…
IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size. unlike InvisibleButton(), Dummy() won't take the mouse click or be navigable into.
into …
///<summary>
/// add a dummy item of given size. unlike InvisibleButton(), Dummy() won't take the mouse click or be navigable into.
///</summary>
public static void Dummy(Vector2 size);
I would be very happy to contribute manual formatting of the original header file to help with this.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5
Top Results From Across the Web
document APIs using /// comments
Learn about documentation comments. You can create documentation for your code by including XML elements in special comment fields.
Read more >XML introduction - XML: Extensible Markup Language | MDN
XML (Extensible Markup Language) is a markup language similar to HTML, but without predefined tags to use. Instead, you define your own tags ......
Read more >Extensible Markup Language (XML) 1.0 (Fifth Edition)
XML provides a mechanism, the document type declaration, to define constraints on the logical structure and to support the use of predefined ...
Read more >Recommended XML tags for C# documentation comments
This article provides the syntax and definitions for recommended tags for XML documentation.
Read more >XML - Documents
An XML document is a basic unit of XML information composed of elements and other markup in an orderly package. An XML document...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@sonoro1234 That is pretty cool! I’ll be taking a closer look sometime soon.
@mellinoe @pixtur @ocornut Just pushed this https://github.com/cimgui/cimgui/tree/keep_text as an initial phase waiting for your comments
My comments