Skip to content

Commit

Permalink
Fix markdown syntax for props tables
Browse files Browse the repository at this point in the history
  • Loading branch information
tamlyn authored and nick-thompson committed Mar 26, 2024
1 parent ca47832 commit c558598
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/pages/docs/reference/Math.md
Expand Up @@ -18,7 +18,7 @@ el.in({channel: 2}, w, x, y, z); // Equivalent to `y`
#### Props

| Name | Default | Type | Description |
| -------- | -------- | ----------------------------------------------- |
| -------- | -------- | -------|--------------------------------------- |
| channel | 0 | Number | Selects which input channel to forward |

### el.sin
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/reference/const.md
Expand Up @@ -19,7 +19,7 @@ el.cycle(el.const({value: 440}))
#### Props

| Name | Default | Type | Description |
| -------- | -------- | ----------------------------------------------- |
| -------- | -------- | -------|--------------------------------------- |
| value | 0 | Number | Declare's the node's output value |


2 changes: 1 addition & 1 deletion src/pages/docs/reference/meter.md
Expand Up @@ -40,6 +40,6 @@ core.on('meter', function(e) {
#### Props

| Name | Default | Type | Description |
| -------- | --------- | ----------------------------------------------- |
| -------- | --------- | -------|--------------------------------------- |
| name | undefined | String | Identifies a meter node by name |

2 changes: 1 addition & 1 deletion src/pages/docs/reference/metro.md
Expand Up @@ -79,6 +79,6 @@ metro event objects.
#### Props
| Name | Default | Type | Description |
| -------- | --------- | ----------------------------------------------- |
| -------- | --------- | -------|--------------------------------------- |
| name | undefined | String | Identifies a metro node by name |
| interval | undefined | Number | Metronome period in milliseconds |
2 changes: 1 addition & 1 deletion src/pages/docs/reference/scope.md
Expand Up @@ -50,7 +50,7 @@ Multi-channel synchronization through the scope node itself requires only:
#### Props

| Name | Default | Type | Description |
| -------- | --------- | ----------------------------------------------- |
| -------- | --------- | -------|--------------------------------------- |
| name | undefined | String | Identifies a scope node by name |
| size | 512 | Number | Block size to buffer and report to js |
| channels | 1 | Number | The number of children to report on |
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/reference/seq.md
Expand Up @@ -23,7 +23,7 @@ el.sample(
#### Props

| Name | Default | Type | Description |
| -------- | -------- | --------------------------------------------------------------------------------- |
| -------- | -------- | -------|------------------------------------------------------------------------- |
| seq | [] | Array | The sequence of values to generate |
| offset | 0 | number | The offset index to reset to on the rising edge of the reset signal |
| hold | false | Bool | When true, continues to output the sequence value until the next trigger |
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/reference/seq2.md
Expand Up @@ -31,7 +31,7 @@ el.sample(
#### Props

| Name | Default | Type | Description |
| -------- | -------- | --------------------------------------------------------------------------------- |
| -------- | -------- | -------|------------------------------------------------------------------------- |
| seq | [] | Array | The sequence of values to generate |
| offset | 0 | number | The sequence offset value |
| hold | false | Bool | When true, continues to output the sequence value until the next trigger |
Expand Down

0 comments on commit c558598

Please sign in to comment.