diff --git a/src/API.ts b/src/API.ts
index d6810df..1cf5690 100644
--- a/src/API.ts
+++ b/src/API.ts
@@ -234,7 +234,7 @@ export class UserAPI {
}
- public control_change = ({ control= 20, value= 0, channel=0 }: ControlChange): void => {
+ public control_change = ({control= 20, value= 0, channel=0 }: ControlChange): void => {
/**
* Sends a MIDI control change to the current MIDI output.
*
diff --git a/src/Documentation.ts b/src/Documentation.ts
index 403008c..2b682ab 100644
--- a/src/Documentation.ts
+++ b/src/Documentation.ts
@@ -126,6 +126,51 @@ You can use the time functions as conditionals. The following example will play
const midi: string = `
# MIDI
+
+You can use Topos to play MIDI thanks to the [WebMIDI API](https://developer.mozilla.org/en-US/docs/Web/API/Web_MIDI_API). You can currently send notes, control change, program change and so on. You can also send a MIDI Clock to your MIDI devices or favorite DAW. Note that Topos is also capable of playing MIDI using **Ziffers** which provides a better syntax for melodic expression.
+
+
+
+## Notes
+- note(note: number, options: {}): send a MIDI Note. This function can take an object as a second argument to specify the MIDI channel, velocity, etc... (_e.g._ note(60, {channel: 1, velocity: 127})).
+
+\`\`\`javascript
+ bpm(80) // Setting a default BPM
+ mod(24) && note(36 + seqbeat(0,12), {duration: 0.02})
+ mod(12) && note(pick(64, 76), {duration: 0.05})
+ mod(36) && note(seqbeat(64, 67, 69), {duration: 0.05})
+ sometimes() && mod(12) && note(seqbeat(64, 67, 69) + 24, {duration: 0.5})
+\`\`\`
+
+## Control and Program Changes
+
+- control_change({control: number, value: number, channel: number}): send a MIDI Control Change. This function takes a single object argument to specify the control message (_e.g._ control_change({control: 1, value: 127, channel: 1})).
+
+\`\`\`javascript
+ control_change({control: pick(24,25), value: rI(1,120), channel: 1}))})
+ control_change({control: pick(30,35), value: rI(1,120) / 2, channel: 1}))})
+\`\`\`
+
+
+- program_change(program: number, channel: number): send a MIDI Program Change. This function takes two arguments to specify the program and the channel (_e.g._ program_change(1, 1)).
+
+\`\`\`javascript
+ program_change(pick(1,2,3,4,5,6,7,8), 1)
+\`\`\`
+
+
+## System Exclusive Messages
+
+- sysex(...number[]): send a MIDI System Exclusive message. This function takes any number of arguments to specify the message (_e.g._ sysex(0x90, 0x40, 0x7f)).
+
+## Clock
+
+- midi_clock(): send a MIDI Clock message. This function is used to synchronize Topos with other MIDI devices or DAWs.
+
+\`\`\`javascript
+ mod(12) && midi_clock() // Sending clock to MIDI device from the global buffer
+\`\`\`
+
`
const sound: string = `
diff --git a/src/main.ts b/src/main.ts
index 14f551a..3a3bbf5 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -40,15 +40,9 @@ const classMap = {
table: "justify-center my-8 mx-8 text-2xl w-full text-left text-white border-collapse",
thead: "text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400",
th: "px-6 py-6",
- td: "py-2"
+ td: "py-2",
+ tr: "py-0",
}
-// const bindings = Object.keys(classMap)
-// .map(key => ({
-// type: 'output',
-// regex: new RegExp(`<${key}(.*)>`, 'g'),
-// //@ts-ignore
-// replace: `<${key} class="${classMap[key]}" $1>`
-// }));
const bindings = Object.keys(classMap)
.map(key => ({
type: 'output',