-
Notifications
You must be signed in to change notification settings - Fork 75
Documenting Standards
-- C4 -- edited this page Oct 7, 2015
·
22 revisions
This document describes the guidelines and specifications for documenting C4 code base. Anything that doesn't follow these guidelines will be rejected. Please read this carefully before contributing.
The basic rule is "follow the current style". We want the documentation to follow the same formatting style throughout. In particular:
Use the triple-slash markers ///
to mark documentation, rather than the block quote asterisk /** */
.
Code blocks should be wrapped with 4 ticks (above and below):
///````
///func example() {
///}
///````
This is the development wiki for the C4 project.