Changes between Version 47 and Version 48 of DeveloperGuidelines/CodeConventions


Ignore:
Timestamp:
08/13/14 21:08:01 (11 years ago)
Author:
Michael Howden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/CodeConventions

    v47 v48  
    3030- for string constants in '''Python''' use '''double-quotes''' {{{" "}}} - UNLESS the string contains "
    3131- for string constants in '''!JavaScript''' use '''single-quotes''' {{{' '}}} - UNLESS the string contains a '
     32- for attributes in '''!HTML''' use use '''double-quotes''' {{{" "}}}
    3233
    3334- for triple-quoted strings (such as '''Docstrings''' or Inline-XML) use {{{""" """}}} with '''double-quotes''', except:
     
    4748}}}
    4849
    49 - for XML/HTML attributes use double-quotes {{{" "}}} (inner quotes must be escaped anyway)
     50- for XML attributes use double-quotes {{{" "}}} (inner quotes must be escaped anyway)
    5051
    5152=== Naming conventions ===