Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix markdown syntax for props tables #7

Merged
merged 1 commit into from Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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