adding pattern section in documentation
This commit is contained in:
@ -100,7 +100,7 @@
|
|||||||
<p rel="noopener noreferrer" id="docs_sound" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Sound</p>
|
<p rel="noopener noreferrer" id="docs_sound" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Sound</p>
|
||||||
<p rel="noopener noreferrer" id="docs_samples" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Samples</p>
|
<p rel="noopener noreferrer" id="docs_samples" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Samples</p>
|
||||||
<p rel="noopener noreferrer" id="docs_synths" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Synths</p>
|
<p rel="noopener noreferrer" id="docs_synths" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Synths</p>
|
||||||
|
<p rel="noopener noreferrer" id="docs_patterns" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Patterns</p>
|
||||||
<p rel="noopener noreferrer" id="docs_midi" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">MIDI</p>
|
<p rel="noopener noreferrer" id="docs_midi" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">MIDI</p>
|
||||||
<p rel="noopener noreferrer" id="docs_functions" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Functions</p>
|
<p rel="noopener noreferrer" id="docs_functions" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Functions</p>
|
||||||
<p rel="noopener noreferrer" id="docs_shortcuts" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Shortcuts</p>
|
<p rel="noopener noreferrer" id="docs_shortcuts" class="pl-2 pr-2 lg:text-xl text-sm hover:bg-neutral-800 py-1 my-1 rounded-lg">Shortcuts</p>
|
||||||
|
|||||||
@ -553,6 +553,14 @@ ${injectAvailableSamples()}
|
|||||||
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const patterns: string = `
|
||||||
|
# Patterns
|
||||||
|
|
||||||
|
## Simple patterns
|
||||||
|
|
||||||
|
- <icode>divseq(div: number, ...values:any[])</icode>
|
||||||
|
`;
|
||||||
|
|
||||||
const synths: string = `
|
const synths: string = `
|
||||||
# Synthesizers
|
# Synthesizers
|
||||||
|
|
||||||
@ -814,6 +822,7 @@ export const documentation = {
|
|||||||
sound: sound,
|
sound: sound,
|
||||||
samples: samples,
|
samples: samples,
|
||||||
synths: synths,
|
synths: synths,
|
||||||
|
patterns: patterns,
|
||||||
midi: midi,
|
midi: midi,
|
||||||
functions: functions,
|
functions: functions,
|
||||||
reference: reference,
|
reference: reference,
|
||||||
|
|||||||
@ -560,6 +560,7 @@ export class Editor {
|
|||||||
"sound",
|
"sound",
|
||||||
"samples",
|
"samples",
|
||||||
"synths",
|
"synths",
|
||||||
|
"patterns",
|
||||||
"midi",
|
"midi",
|
||||||
"functions",
|
"functions",
|
||||||
"reference",
|
"reference",
|
||||||
|
|||||||
Reference in New Issue
Block a user