-
Notifications
You must be signed in to change notification settings - Fork 119
Git Wiki Guide
Soundkage edited this page Sep 22, 2014
·
2 revisions
#Git Wiki Guide (Title – H1) A guide for contributors on how to keep our wiki working (Short Descriptor - bold italics)
##Style (Page Heading – H2) Each page should be styled as above. By sticking to this design we can make a clear and easy to use wiki. (Page Text)
##Content (Page Heading – H2) 3 things we do to keep the wiki working:
- Each page focuses on one idea only
- Links to sub/other pages are given context
- Pages are kept short and clean (<1000 words)
###Syntax Highlighting (Sub Heading - H3) Use syntax highlighting in code examples.
// reverse byte order (32-bit)
public static UInt32 ReverseBytes(UInt32 value)
{
return (value & 0x000000FFU) << 24 | (value & 0x0000FF00U) << 8 |
(value & 0x00FF0000U) >> 8 | (value & 0xFF000000U) >> 24;
}
This Link provides a list of all available language options.