You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)publicstaticUInt32ReverseBytes(UInt32value){return(value&0x000000FFU)<<24|(value&0x0000FF00U)<<8|(value&0x00FF0000U)>>8|(value&0xFF000000U)>>24;}
This Link provides a list of all available language options.