{{#library}}
    {{>documentation}}
    {{/library}}
    {{#library.hasConstants}}
    
      Constants
      
        {{#library.constants}}
        {{>constant}}
        {{/library.constants}}
      
    {{/library.hasConstants}}
    {{#library.hasTypedefs}}
    
      Typedefs
      
        {{#library.typedefs}}
        {{>callable}}
        {{/library.typedefs}}
      
    {{/library.hasTypedefs}}
    {{#library.hasProperties}}
    
      Properties
      
        {{#library.properties}}
        {{>property}}
        {{/library.properties}}
      
    {{/library.hasProperties}}
    {{#library.hasFunctions}}
    
      Functions
      
        {{#library.functions}}
        {{>callable}}
        {{/library.functions}}
      
    {{/library.hasFunctions}}
    {{#library.hasEnums}}
    
      Enums
      
        {{#library.enums}}
        - 
          {{{linkedName}}}
        
- 
          {{{ oneLineDoc }}}
        {{/library.enums}}
    {{/library.hasEnums}}
    {{#library.hasClasses}}
    
      Classes
      
        {{#library.classes}}
        - 
          {{{linkedName}}}
        
- 
          {{{ oneLineDoc }}}
        {{/library.classes}}
    {{/library.hasClasses}}
    {{#library.hasExceptions}}
    
      Exceptions / Errors
      
        {{#library.exceptions}}
        - 
          {{{linkedName}}}
        
- 
          {{{ oneLineDoc }}}
        {{/library.exceptions}}
    {{/library.hasExceptions}}