Changes between Version 47 and Version 48 of DeveloperGuidelines/CodeConventions
- Timestamp:
- 08/13/14 21:08:01 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/CodeConventions
v47 v48 30 30 - for string constants in '''Python''' use '''double-quotes''' {{{" "}}} - UNLESS the string contains " 31 31 - for string constants in '''!JavaScript''' use '''single-quotes''' {{{' '}}} - UNLESS the string contains a ' 32 - for attributes in '''!HTML''' use use '''double-quotes''' {{{" "}}} 32 33 33 34 - for triple-quoted strings (such as '''Docstrings''' or Inline-XML) use {{{""" """}}} with '''double-quotes''', except: … … 47 48 }}} 48 49 49 - for XML /HTMLattributes use double-quotes {{{" "}}} (inner quotes must be escaped anyway)50 - for XML attributes use double-quotes {{{" "}}} (inner quotes must be escaped anyway) 50 51 51 52 === Naming conventions ===