c# - code indentation in Doxygen using Xml comment -
i trying way indent example code in doxygen not find c# , xml comments. since every attempt little long on setting , , have not found proper documentation on issue, though of asking here.
the idea create indentation c# xml comment. far have:
/// <code>public void method()<br> /// {<br> /// <blockquote>float x = 10, y = 10 , z = 0;<br> /// vector3 vector = new vector3 (x, y, z);<br> /// if(something)<br> /// <blockquote>other code</blockquote></br></blockquote> /// }</code>
but draws blue line on left side:
does have simple , looking way?
thanks
how this?
/// \code /// public void method() /// { /// float x = 10, y = 10 , z = 0; /// vector3 vector = new vector3 (x, y, z); /// if(something) /// other code /// } /// \endcode
much easier read source comments :)
Comments
Post a Comment