Skip to content

Commit

Permalink
build(deps): update dependencies
Browse files Browse the repository at this point in the history
add class example
  • Loading branch information
ph1p committed Aug 28, 2019
1 parent 1568e30 commit 9339e87
Show file tree
Hide file tree
Showing 6 changed files with 18,390 additions and 5 deletions.
53 changes: 53 additions & 0 deletions example/documentation/code/class-constructor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
title: Classes
---

# Classes

## Classes

<dl>
<dt><a href="#firstClass">firstClass</a></dt>
<dd><p>firstClass (no annotation needed)</p>
</dd>
<dt><a href="#secondClass">secondClass</a></dt>
<dd></dd>
<dt><a href="#thirdClass">thirdClass</a></dt>
<dd></dd>
<dt><a href="#fourthClass">fourthClass</a></dt>
<dd></dd>
</dl>

<a name="firstClass"></a>

## firstClass
firstClass (no annotation needed)

**Kind**: global class
<a name="secondClass"></a>

## secondClass
**Kind**: global class
<a name="new_secondClass_new"></a>

### new secondClass()
secondClass

<a name="thirdClass"></a>

## thirdClass
**Kind**: global class
<a name="new_thirdClass_new"></a>

### new thirdClass()
thirdClass

<a name="fourthClass"></a>

## fourthClass
**Kind**: global class
<a name="new_fourthClass_new"></a>

### new fourthClass()
fourthClass (no class annotation)

7 changes: 6 additions & 1 deletion example/documentation/code/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
exports.fileTree = [
{ name: 'class-constructor', path: '/class-constructor', fullPath: './documentation/code/class-constructor' },
{ name: 'class', path: '/class', fullPath: './documentation/code/class' },
{
name: 'lib',
Expand All @@ -24,7 +25,11 @@ exports.fileTree = [
];
exports.sidebarTree = (title = 'Mainpage') => ({
'/code/': [
{ title: 'API', collapsable: false, children: [['', '' + title + ''], 'class', 'methods', 'objects', 'test'] },
{
title: 'API',
collapsable: false,
children: [['', '' + title + ''], 'class-constructor', 'class', 'methods', 'objects', 'test']
},
{ title: 'lib', collapsable: false, children: ['lib/dmd-options', 'lib/jsdoc-to-markdown'] },
{ title: 'subfolder', collapsable: false, children: ['subfolder/subfolder.1/variables', 'subfolder/variables'] }
]
Expand Down
Loading

0 comments on commit 9339e87

Please sign in to comment.