Changes between Version 44 and Version 45 of DeveloperGuidelines/CodeConventions
- Timestamp:
- 11/16/13 23:32:05 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/CodeConventions
v44 v45 27 27 - for string constants in '''!JavaScript''' use '''single-quotes''' {{{' '}}} - UNLESS the string contains a ' 28 28 29 - for triple-quoted strings (such as '''Docstrings''' or Inline-XML) use {{{""" """}}} with '''double-quotes''' 29 - for triple-quoted strings (such as '''Docstrings''' or Inline-XML) use {{{""" """}}} with '''double-quotes''', except: 30 30 - for '''Inline-!JavaScript''' or JSON inside Python code use {{{''' '''}}} with '''single-quotes''' 31 31