Created
December 24, 2012 11:13
-
-
Save mchayka/4368871 to your computer and use it in GitHub Desktop.
Styleguides: CSS comments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ========================================================================== | |
Section comment block | |
========================================================================== */ | |
/* Sub-section comment block | |
========================================================================== */ | |
/* Sub-section comment block | |
-------------------------------------------------------------------------- */ | |
/** | |
* Short description using Doxygen-style comment format | |
* | |
* The first sentence of the long description starts here and continues on this | |
* line for a while finally concluding here at the end of this paragraph. | |
* | |
* The long description is ideal for more detailed explanations and | |
* documentation. It can include example HTML, URLs, or any other information | |
* that is deemed necessary or useful. | |
* | |
* @tag This is a tag named 'tag' | |
* | |
* TODO: This is a todo statement that describes an atomic task to be completed | |
* at a later date. It wraps after 80 characters and following lines are | |
* indented by 2 spaces. | |
*/ | |
/* Basic comment */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment