M204wiki style guide

From m204wiki
Revision as of 02:40, 7 January 2011 by Alex (talk | contribs) (Created page with "==Overview== While the most important part of a wiki is the content, following a few simple rules in formatting wiki documentation pages can make it easier for people to use the ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

While the most important part of a wiki is the content, following a few simple rules in formatting wiki documentation pages can make it easier for people to use the wiki because the consistent look and feel of each page. In addition, following these rules can make it easier to write the pages as standard use of wiki and HTML tags makes it possible to convey information in the format of the text rather than having to state it explicitly.

Use of HTML tags and attributes that focus on the semantics of text also has some advantages:

  • It's easier to remember semantic tags and attributes than remembering the physical display characteristics of a certain kinds of text.
  • It's easier for Sirius to tweak or customize the look and feel of text based on its semantics if the semantics of the text is explicit in the markup.

In fact, as a general rule of thumb, if you're coding any explicit physical text attributes in your wiki markup, it's probably a sign that you're doing something wrong or that Sirius needs to expand its list of semantic classes.

For example, if you enter ''Model204'' or <i>Model 204</i> you're doing something wrong. You should enter <var class="product">Model 204</var>. Even if you're trying to emphasize something, like the "should" in the last sentence, you should use <strong>should</strong> not '''should''' or <b>should</b> though, admittedly, <strong> doesn't tell one a heck of a lot about the semantics of the enclosed word or words.

Headers

The outermost headers on any page should be level two headers so should have two equals sign on either side:

==This is a header==

Syntax diagrams

One of the most common documentation structures is syntax diagrams. Syntax diagrams show the format of a command, statement, or method invocation. While in an ideal world there would be a nice macro language for specifying the key elements of a syntax diagrams, we don't live in an ideal world so most of work of indicating syntax must be done manually.

The first rule of syntax diagrams is that they must be contained inside a <p> element with a class of syntax:

<p class="syntax"> ... syntax diagram goes here </p>

There are other rules that must be observed:

  • All keywords that must be typed literally as in the syntax diagram must start with an upper case character.
  • All syntax terms that are not literals should start with lower case letters.
  • Camel case should be used for artifical compound word such as, for example, veryImportantParameter. Of course, keywords can also use this kind of captilization but, because keywords must begin with upper case characters, the casing is, strictly speaking, referred to as Pascal case.
  • Optional words or phrases must be inside of square brackets. These can be nested if, for example, an optional keyword appears inside an optional clause. Note that for Callable methods, the target (including the equal sign) should be inside square brackets. Note also that, strictly speaking, the syntax diagram for functions is not really correct as a function can be used in a context where its result is not assigned to a variable, but the standard syntax diagram shows an assignment to a variable. It's not obvious how we can make the syntax diagram more accurate without losing information or making it needlessly complex.
  • Similary, methods can apply to variables or the results of expressions. This dichotomy can be expressed by not using the percent sign in the syntax term for the method object (nor for parameters). This "rule" is currently not followed everywhere — some places use the percent sign at the start of syntax terms that might be variables or results of expressions and some don't. For now, the recommendation is that the percent sign be used only where a percent variable is required. Perhaps, some day, this will turn into a rule.
  • The standard Model 204 continuation character dash (-) should be used to continue each line where the syntax is continued on the next line. While more than 90% of the time, syntax diagrams will refer to a single line statement or a command, it's still good discipline to stick with this rule so multi-line syntax is obvious.

Examples