Update documentation to use better jsdoc2md format

This commit is contained in:
mmcw-dev 2017-12-27 16:56:26 -05:00
parent b68c4b28a6
commit 7f60fdfb97
2 changed files with 8 additions and 9 deletions

View File

@ -5,12 +5,11 @@
```js
const bellows = require('bellows')
```
<a name="module_bellows..bellows"></a>
<a name="exp_module_bellows--bellows"></a>
### bellows~bellows([options])
Generate bellows pattern for cutting and folding.
**Kind**: inner method of [<code>bellows</code>](#module_bellows)
### bellows([options]) ⏏
**Kind**: Exported function
**Typicalname:bellows**: Generate bellows pattern for cutting and folding.
| Param | Type | Description |
| --- | --- | --- |
@ -31,8 +30,7 @@ Generate bellows pattern for cutting and folding.
| [options.parts] | <code>Integer</code> | Number of parts to split pattern into: 1, 2, or 4 returns {String} Base64 encoded png data |
**Example**
Generate the default square bellows in 2 parts and print the string to the console.
```
```js
const b = bellows({ parts : 2 })
console.log(b)
```

View File

@ -54,6 +54,9 @@ function taper (back, front, length, pos) {
}
/**
* @alias module:bellows
* @typicalname:bellows
*
* Generate bellows pattern for cutting and folding.
*
* @param {Object} [options] Bellows configuration options
@ -75,8 +78,6 @@ function taper (back, front, length, pos) {
* returns {String} Base64 encoded png data
*
* @example
* Generate the default square bellows in 2 parts and print the string to the console.
*
* const b = bellows({ parts : 2 })
* console.log(b)
*/