Update documentation to use better jsdoc2md format
This commit is contained in:
parent
b68c4b28a6
commit
7f60fdfb97
12
README.md
12
README.md
|
@ -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)
|
||||||
```
|
```
|
||||||
|
|
|
@ -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)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue