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 ```js
const bellows = require('bellows') const bellows = require('bellows')
``` ```
<a name="module_bellows..bellows"></a> <a name="exp_module_bellows--bellows"></a>
### bellows~bellows([options]) ### bellows([options]) ⏏
Generate bellows pattern for cutting and folding. **Kind**: Exported function
**Typicalname:bellows**: Generate bellows pattern for cutting and folding.
**Kind**: inner method of [<code>bellows</code>](#module_bellows)
| Param | Type | Description | | 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 | | [options.parts] | <code>Integer</code> | Number of parts to split pattern into: 1, 2, or 4 returns {String} Base64 encoded png data |
**Example** **Example**
Generate the default square bellows in 2 parts and print the string to the console. ```js
```
const b = bellows({ parts : 2 }) const b = bellows({ parts : 2 })
console.log(b) 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. * Generate bellows pattern for cutting and folding.
* *
* @param {Object} [options] Bellows configuration options * @param {Object} [options] Bellows configuration options
@ -75,8 +78,6 @@ function taper (back, front, length, pos) {
* returns {String} Base64 encoded png data * returns {String} Base64 encoded png data
* *
* @example * @example
* Generate the default square bellows in 2 parts and print the string to the console.
*
* const b = bellows({ parts : 2 }) * const b = bellows({ parts : 2 })
* console.log(b) * console.log(b)
*/ */