From 4ef6d8df9247441c766d8792579fd64c8784f5f0 Mon Sep 17 00:00:00 2001 From: Martijn Versluis Date: Thu, 28 Nov 2024 21:34:15 +0100 Subject: [PATCH] Remove husky - Build pre-commit takes way too long - CI also verifies README integrity --- .husky/pre-commit | 5 - README.md | 22061 ++++++++++++-------------------------------- package.json | 3 +- yarn.lock | 10 - 4 files changed, 6124 insertions(+), 15955 deletions(-) delete mode 100755 .husky/pre-commit diff --git a/.husky/pre-commit b/.husky/pre-commit deleted file mode 100755 index 6a31286a3..000000000 --- a/.husky/pre-commit +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - -yarn readme -git add README.md diff --git a/README.md b/README.md index e74751e24..3871d3e11 100644 --- a/README.md +++ b/README.md @@ -5527,375 +5527,6 @@ use those to change the generated output. Note: all classes, methods and constants that are documented here can be considered public API and will only be subject to breaking changes between major versions. - - -**chordsheetjs** • [**Docs**](#globalsmd) - -*** - -# ChordSheetJS [![Code Climate](https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) - -A JavaScript library for parsing and formatting chord sheets - -**Contents** - -- [Installation](#installation) -- [How to ...?](#how-to-) -- [Supported ChordPro directives](#supported-chordpro-directives) -- [API docs](#api-docs) -- [Contributing](#_mediacontributingmd) - -## Installation - -### Package managers - -`ChordSheetJS` is on npm, to install run: - -```bash -npm install chordsheetjs -``` - -Load with `import`: - -```javascript -import ChordSheetJS from 'chordsheetjs'; -``` - -or `require()`: - -```javascript -var ChordSheetJS = require('chordsheetjs').default; -``` - -### Standalone bundle file - -If you're not using a build tool, you can download and use the `bundle.js` from the -[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): - -```html - - -``` - -## How to ...? - -### Parse chord sheet - -#### Regular chord sheets - -```javascript -const chordSheet = ` - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.ChordsOverWordsParser(); -const song = parser.parse(chordSheet); -``` - -#### Ultimate Guitar chord sheets - -```javascript -const chordSheet = ` -[Chorus] - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.UltimateGuitarParser(); -const song = parser.parse(chordSheet); -``` - -#### Chord pro format - -```javascript -const chordSheet = ` -{title: Let it be} -{subtitle: ChordSheetJS example version} - -{start_of_chorus: Chorus} -Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be -[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] -{end_of_chorus}`.substring(1); - -const parser = new ChordSheetJS.ChordProParser(); -const song = parser.parse(chordSheet); -``` - -### Display a parsed sheet - -#### Plain text format - -```javascript -const formatter = new ChordSheetJS.TextFormatter(); -const disp = formatter.format(song); -``` - -#### HTML format - -##### Table-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlTableFormatter(); -const disp = formatter.format(song); -``` - -##### Div-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlDivFormatter(); -const disp = formatter.format(song); -``` - -#### Chord pro format - -```javascript -const formatter = new ChordSheetJS.ChordProFormatter(); -const disp = formatter.format(song); -``` - -### Serialize/deserialize - -Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by -third-party libraries. The serialized object can also be deserialized back into a `Song`. - -```javascript -const serializedSong = new ChordSheetSerializer().serialize(song); -const deserialized = new ChordSheetSerializer().deserialize(serializedSong); -``` - -### Add styling - -The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: - -```javascript -HtmlTableFormatter.cssString(); -// .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssString('.chordSheetViewer'); -// .chordSheetViewer .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssObject(); -// '.paragraph': { -// marginBottom: '1em' -// } -``` - -### Parsing and modifying chords - -```javascript -import { Chord } from 'chordsheetjs'; -``` - -#### Parse - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -``` - -Parse numeric chords (Nashville system): - -```javascript -const chord = Chord.parse('b1sus4/#3'); -``` - -#### Display with #toString - -Use #toString() to convert the chord to a chord string (eg Dsus/F#) - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -chord.toString(); // --> "Ebsus4/Bb" -``` - -#### Clone - -```javascript -var chord2 = chord.clone(); -``` - -#### Normalize - -Normalizes keys B#, E#, Cb and Fb to C, F, B and E - -```javascript -const chord = Chord.parse('E#/B#'); -normalizedChord = chord.normalize(); -normalizedChord.toString(); // --> "F/C" -``` - -#### ~~Switch modifier~~ - -***Deprecated*** - -Convert # to b and vice versa - -```javascript -const chord = parseChord('Eb/Bb'); -const chord2 = chord.switchModifier(); -chord2.toString(); // --> "D#/A#" -``` - -#### Use specific modifier - -Set the chord to a specific modifier (# or b) - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('#'); -chord2.toString(); // --> "D#/A#" -``` - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('b'); -chord2.toString(); // --> "Eb/Bb" -``` - -#### Transpose up - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeUp(); -chord2.toString(); // -> "E/B" -``` - -#### Transpose down - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeDown(); -chord2.toString(); // -> "D/A" -``` - -#### Transpose - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(4); -chord2.toString(); // -> "E/G#" -``` - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(-4); -chord2.toString(); // -> "Ab/C" -``` - -#### Convert numeric chord to chord symbol - -```javascript -const numericChord = Chord.parse('2/4'); -const chordSymbol = numericChord.toChordSymbol('E'); -chordSymbol.toString(); // -> "F#/A" -``` - -## Supported ChordPro directives - -All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually -use those to change the generated output. - -:heavy_check_mark: = supported - -:clock2: = will be supported in a future version - -:heavy_multiplication_x: = currently no plans to support it in the near future - -### Meta-data directives - -| Directive | Support | -|:---------------- |:------------------:| -| title (short: t) | :heavy_check_mark: | -| subtitle | :heavy_check_mark: | -| artist | :heavy_check_mark: | -| composer | :heavy_check_mark: | -| lyricist | :heavy_check_mark: | -| copyright | :heavy_check_mark: | -| album | :heavy_check_mark: | -| year | :heavy_check_mark: | -| key | :heavy_check_mark: | -| time | :heavy_check_mark: | -| tempo | :heavy_check_mark: | -| duration | :heavy_check_mark: | -| capo | :heavy_check_mark: | -| meta | :heavy_check_mark: | - -### Formatting directives - -| Directive | Support | -|:-------------------------- |:------------------------:| -| comment (short: c) | :heavy_check_mark: | -| comment_italic (short: ci) | :heavy_multiplication_x: | -| comment_box (short: cb) | :heavy_multiplication_x: | -| chorus | :heavy_multiplication_x: | -| image | :heavy_multiplication_x: | - -### Environment directives - -| Directive | Support | -|:---------------------------- |:------------------:| -| start_of_chorus (short: soc) | :heavy_check_mark: | -| end_of_chorus (short: eoc) | :heavy_check_mark: | -| start_of_verse | :heavy_check_mark: | -| end_of_verse | :heavy_check_mark: | -| start_of_tab (short: sot) | :heavy_check_mark: | -| end_of_tab (short: eot) | :heavy_check_mark: | -| start_of_grid | :heavy_check_mark: | -| end_of_grid | :heavy_check_mark: | - -### Chord diagrams - -| Directive | Support | -|:--------- |:------------------:| -| define | :heavy_check_mark: | -| chord | :heavy_check_mark: | - -### Fonts, sizes and colours - -| Directive | Support | -|:----------- |:------------------------:| -| textfont | :heavy_check_mark: | -| textsize | :heavy_check_mark: | -| textcolour | :heavy_check_mark: | -| chordfont | :heavy_check_mark: | -| chordsize | :heavy_check_mark: | -| chordcolour | :heavy_check_mark: | -| tabfont | :heavy_multiplication_x: | -| tabsize | :heavy_multiplication_x: | -| tabcolour | :heavy_multiplication_x: | - -### Output related directives - -| Directive | Support | -|:------------------------------ |:------------------------:| -| new_page (short: np) | :heavy_multiplication_x: | -| new_physical_page (short: npp) | :heavy_multiplication_x: | -| column_break (short: cb) | :heavy_multiplication_x: | -| grid (short: g) | :heavy_multiplication_x: | -| no_grid (short: ng) | :heavy_multiplication_x: | -| titles | :heavy_multiplication_x: | -| columns (short: col) | :heavy_multiplication_x: | - -### Custom extensions - -| Directive | Support | -|:--------- |:------------------:| -| x_ | :heavy_check_mark: | - -## API docs - -Note: all classes, methods and constants that are documented here can be considered public API and will only be -subject to breaking changes between major versions. - {{>main}} @@ -33113,7 +32744,8 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes[**chordsheetjs**](#readmemd) • **Docs*****[chordsheetjs](#globalsmd) / Chord +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes[**chordsheetjs**](#readmemd) • **Docs***** +[chordsheetjs](#globalsmd) / Chord ## Class: Chord @@ -33974,9086 +33606,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L21) - -### Properties - -#### annotation - -> **annotation**: `null` \| `string` - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L13) - -*** - -#### chords - -> **chords**: `string` - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L9) - -*** - -#### lyrics - -> **lyrics**: `null` \| `string` - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L11) - -### Methods - -#### changeChord() - -> **changeChord**(`func`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Parameters - -• **func** - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L100) - -*** - -#### clone() - -> **clone**(): [`ChordLyricsPair`](#classeschordlyricspairmd) - -Returns a deep copy of the ChordLyricsPair, useful when programmatically transforming a song - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L56) - -*** - -#### isRenderable() - -> **isRenderable**(): `boolean` - -Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet (except for ChordPro sheets) - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L48) - -*** - -#### set() - -> **set**(`__namedParameters`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Parameters - -• **\_\_namedParameters** - -• **\_\_namedParameters.annotation?**: `string` - -• **\_\_namedParameters.chords?**: `string` - -• **\_\_namedParameters.lyrics?**: `string` - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L64) - -*** - -#### setAnnotation() - -> **setAnnotation**(`annotation`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Parameters - -• **annotation**: `string` - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L76) - -*** - -#### setLyrics() - -> **setLyrics**(`lyrics`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Parameters - -• **lyrics**: `string` - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L72) - -*** - -#### toString() - -> **toString**(): `string` - -##### Returns - -`string` - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L60) - -*** - -#### transpose() - -> **transpose**(`delta`, `key`, `__namedParameters`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Parameters - -• **delta**: `number` - -• **key**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -• **\_\_namedParameters** = `...` - -• **\_\_namedParameters.normalizeChordSuffix**: `boolean` - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L80) - -*** - -#### useModifier() - -> **useModifier**(`modifier`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Parameters - -• **modifier**: `Modifier` - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L96) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ChordProFormatter - -## Class: ChordProFormatter - -Formats a song into a ChordPro chord sheet - -### Extends - -- [`Formatter`](#classesformattermd) - -### Constructors - -#### new ChordProFormatter() - -> **new ChordProFormatter**(`configuration`?): [`ChordProFormatter`](#classeschordproformattermd) - -Instantiate - -##### Parameters - -• **configuration?**: `Partial`\<`ConfigurationProperties`\> = `{}` - -options - -##### Returns - -[`ChordProFormatter`](#classeschordproformattermd) - -##### Inherited from - -[`Formatter`](#classesformattermd).[`constructor`](#constructors) - -##### Defined in - -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) - -### Properties - -#### configuration - -> **configuration**: `Configuration` - -##### Inherited from - -[`Formatter`](#classesformattermd).[`configuration`](#configuration) - -##### Defined in - -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) - -### Methods - -#### format() - -> **format**(`song`): `string` - -Formats a song into a ChordPro chord sheet. - -##### Parameters - -• **song**: [`Song`](#classessongmd) - -The song to be formatted - -##### Returns - -`string` - -The ChordPro string - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L24) - -*** - -#### formatChordLyricsPair() - -> **formatChordLyricsPair**(`chordLyricsPair`): `string` - -##### Parameters - -• **chordLyricsPair**: [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L132) - -*** - -#### formatChordLyricsPairChords() - -> **formatChordLyricsPairChords**(`chordLyricsPair`): `string` - -##### Parameters - -• **chordLyricsPair**: [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L139) - -*** - -#### formatChordLyricsPairLyrics() - -> **formatChordLyricsPairLyrics**(`chordLyricsPair`): `string` - -##### Parameters - -• **chordLyricsPair**: [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L158) - -*** - -#### formatComment() - -> **formatComment**(`comment`): `string` - -##### Parameters - -• **comment**: [`Comment`](#classescommentmd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L162) - -*** - -#### formatExpression() - -> **formatExpression**(`expression`): `string` - -##### Parameters - -• **expression**: `Evaluatable` - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L112) - -*** - -#### formatExpressionRange() - -> **formatExpressionRange**(`expressionRange`): `string` - -##### Parameters - -• **expressionRange**: `Evaluatable`[] - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L104) - -*** - -#### formatItem() - -> **formatItem**(`item`, `metadata`): `string` - -##### Parameters - -• **item**: `Item` - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L38) - -*** - -#### formatLine() - -> **formatLine**(`line`, `metadata`): `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L32) - -*** - -#### formatOrEvaluateItem() - -> **formatOrEvaluateItem**(`item`, `metadata`): `string` - -##### Parameters - -• **item**: `Evaluatable` - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L62) - -*** - -#### formatTag() - -> **formatTag**(`tag`): `string` - -##### Parameters - -• **tag**: [`Tag`](#classestagmd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L124) - -*** - -#### formatTernary() - -> **formatTernary**(`ternary`): `string` - -##### Parameters - -• **ternary**: [`Ternary`](#classesternarymd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L78) - -*** - -#### formatValueTest() - -> **formatValueTest**(`valueTest`): `string` - -##### Parameters - -• **valueTest**: `null` \| `string` - -##### Returns - -`string` - -##### Defined in - -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L96) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ChordProParser - -## Class: ChordProParser - -Parses a ChordPro chord sheet - -### Constructors - -#### new ChordProParser() - -> **new ChordProParser**(): [`ChordProParser`](#classeschordproparsermd) - -##### Returns - -[`ChordProParser`](#classeschordproparsermd) - -### Properties - -#### song? - -> `optional` **song**: [`Song`](#classessongmd) - -##### Defined in - -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_pro_parser.ts#L16) - -### Accessors - -#### warnings - -##### Get Signature - -> **get** **warnings**(): `ParserWarning`[] - -All warnings raised during parsing the chord sheet - -###### Member - -###### Returns - -`ParserWarning`[] - -##### Defined in - -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_pro_parser.ts#L23) - -### Methods - -#### parse() - -> **parse**(`chordSheet`, `options`?): [`Song`](#classessongmd) - -Parses a ChordPro chord sheet into a song - -##### Parameters - -• **chordSheet**: `string` - -the ChordPro chord sheet - -• **options?**: `ChordProParserOptions` - -Parser options. - -##### Returns - -[`Song`](#classessongmd) - -The parsed song - -##### See - -https://peggyjs.org/documentation.html#using-the-parser - -##### Defined in - -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_pro_parser.ts#L36) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ChordSheetParser - -## Class: ChordSheetParser - -Parses a normal chord sheet - -ChordSheetParser is deprecated, please use ChordsOverWordsParser. - -ChordsOverWordsParser aims to support any kind of chord, whereas ChordSheetParser lacks -support for many variations. Besides that, some chordpro feature have been ported back -to ChordsOverWordsParser, which adds some interesting functionality. - -### Extended by - -- [`UltimateGuitarParser`](#classesultimateguitarparsermd) - -### Constructors - -#### new ChordSheetParser() - -> **new ChordSheetParser**(`__namedParameters`?, `showDeprecationWarning`?): [`ChordSheetParser`](#classeschordsheetparsermd) - -Instantiate a chord sheet parser -ChordSheetParser is deprecated, please use ChordsOverWordsParser. - -##### Parameters - -• **\_\_namedParameters?** = `{}` - -• **\_\_namedParameters.preserveWhitespace?**: `boolean` = `true` - -• **showDeprecationWarning?**: `boolean` = `true` - -##### Returns - -[`ChordSheetParser`](#classeschordsheetparsermd) - -##### Deprecated - -##### Defined in - -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L46) - -### Properties - -#### chordLyricsPair - -> **chordLyricsPair**: `null` \| [`ChordLyricsPair`](#classeschordlyricspairmd) = `null` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L31) - -*** - -#### currentLine - -> **currentLine**: `number` = `0` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L35) - -*** - -#### lineCount - -> **lineCount**: `number` = `0` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L37) - -*** - -#### lines - -> **lines**: `string`[] = `[]` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L33) - -*** - -#### preserveWhitespace - -> **preserveWhitespace**: `boolean` = `true` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L23) - -*** - -#### processingText - -> **processingText**: `boolean` = `true` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L21) - -*** - -#### song - -> **song**: [`Song`](#classessongmd) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L25) - -*** - -#### songBuilder - -> **songBuilder**: `SongBuilder` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L27) - -*** - -#### songLine - -> **songLine**: `null` \| [`Line`](#classeslinemd) = `null` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L29) - -### Methods - -#### addCharacter() - -> **addCharacter**(`chr`, `nextChar`): `void` - -##### Parameters - -• **chr**: `any` - -• **nextChar**: `any` - -##### Returns - -`void` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L160) - -*** - -#### endOfSong() - -> **endOfSong**(): `void` - -##### Returns - -`void` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L82) - -*** - -#### ensureChordLyricsPairInitialized() - -> **ensureChordLyricsPairInitialized**(): `void` - -##### Returns - -`void` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L177) - -*** - -#### hasNextLine() - -> **hasNextLine**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L124) - -*** - -#### initialize() - -> **initialize**(`document`, `song`): `void` - -##### Parameters - -• **document**: `any` - -• **song**: `null` \| [`Song`](#classessongmd) = `null` - -##### Returns - -`void` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L107) - -*** - -#### parse() - -> **parse**(`chordSheet`, `options`?): [`Song`](#classessongmd) - -Parses a chord sheet into a song - -##### Parameters - -• **chordSheet**: `string` - -The ChordPro chord sheet - -• **options?** = `{}` - -Optional parser options - -• **options.song?**: [`Song`](#classessongmd) - -The [Song](#classessongmd) to store the song data in - -##### Returns - -[`Song`](#classessongmd) - -The parsed song - -##### Defined in - -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L70) - -*** - -#### parseLine() - -> **parseLine**(`line`): `void` - -##### Parameters - -• **line**: `any` - -##### Returns - -`void` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L84) - -*** - -#### parseLyricsWithChords() - -> **parseLyricsWithChords**(`chordsLine`, `lyricsLine`): `void` - -##### Parameters - -• **chordsLine**: `any` - -• **lyricsLine**: `any` - -##### Returns - -`void` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L128) - -*** - -#### parseNonEmptyLine() - -> **parseNonEmptyLine**(`line`): `void` - -##### Parameters - -• **line**: `any` - -##### Returns - -`void` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L94) - -*** - -#### processCharacters() - -> **processCharacters**(`chordsLine`, `lyricsLine`): `void` - -##### Parameters - -• **chordsLine**: `any` - -• **lyricsLine**: `any` - -##### Returns - -`void` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L146) - -*** - -#### readLine() - -> **readLine**(): `string` - -##### Returns - -`string` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L118) - -*** - -#### shouldAddCharacterToChords() - -> **shouldAddCharacterToChords**(`nextChar`): `any` - -##### Parameters - -• **nextChar**: `any` - -##### Returns - -`any` - -##### Defined in - -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L173) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ChordSheetSerializer - -## Class: ChordSheetSerializer - -Serializes a song into een plain object, and deserializes the serialized object back into a [Song](#classessongmd) - -### Constructors - -#### new ChordSheetSerializer() - -> **new ChordSheetSerializer**(): [`ChordSheetSerializer`](#classeschordsheetserializermd) - -##### Returns - -[`ChordSheetSerializer`](#classeschordsheetserializermd) - -### Properties - -#### song - -> **song**: [`Song`](#classessongmd) - -##### Defined in - -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L40) - -*** - -#### songBuilder - -> **songBuilder**: `SongBuilder` - -##### Defined in - -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L42) - -### Methods - -#### deserialize() - -> **deserialize**(`serializedSong`): [`Song`](#classessongmd) - -Deserializes a song that has been serialized using [serialize](#serialize) - -##### Parameters - -• **serializedSong**: `SerializedSong` - -The serialized song - -##### Returns - -[`Song`](#classessongmd) - -The deserialized song - -##### Defined in - -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L151) - -*** - -#### parseAstComponent() - -> **parseAstComponent**(`astComponent`): `null` \| [`ChordLyricsPair`](#classeschordlyricspairmd) \| [`Tag`](#classestagmd) \| [`Comment`](#classescommentmd) \| [`Ternary`](#classesternarymd) \| [`Literal`](#classesliteralmd) \| [`SoftLineBreak`](#classessoftlinebreakmd) - -##### Parameters - -• **astComponent**: `SerializedComponent` - -##### Returns - -`null` \| [`ChordLyricsPair`](#classeschordlyricspairmd) \| [`Tag`](#classestagmd) \| [`Comment`](#classescommentmd) \| [`Ternary`](#classesternarymd) \| [`Literal`](#classesliteralmd) \| [`SoftLineBreak`](#classessoftlinebreakmd) - -##### Defined in - -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L156) - -*** - -#### parseChordLyricsPair() - -> **parseChordLyricsPair**(`astComponent`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Parameters - -• **astComponent**: `SerializedChordLyricsPair` - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L201) - -*** - -#### parseChordSheet() - -> **parseChordSheet**(`astComponent`): `void` - -##### Parameters - -• **astComponent**: `SerializedSong` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L184) - -*** - -#### parseComment() - -> **parseComment**(`astComponent`): [`Comment`](#classescommentmd) - -##### Parameters - -• **astComponent**: `SerializedComment` - -##### Returns - -[`Comment`](#classescommentmd) - -##### Defined in - -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L234) - -*** - -#### parseExpression() - -> **parseExpression**(`expression`): (`null` \| `AstType`)[] - -##### Parameters - -• **expression**: (`string` \| `SerializedTernary`)[] - -##### Returns - -(`null` \| `AstType`)[] - -##### Defined in - -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L259) - -*** - -#### parseLine() - -> **parseLine**(`astComponent`): `void` - -##### Parameters - -• **astComponent**: `SerializedLine` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L191) - -*** - -#### parseTag() - -> **parseTag**(`astComponent`): [`Tag`](#classestagmd) - -##### Parameters - -• **astComponent**: `SerializedTag` - -##### Returns - -[`Tag`](#classestagmd) - -##### Defined in - -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L213) - -*** - -#### parseTernary() - -> **parseTernary**(`astComponent`): [`Ternary`](#classesternarymd) - -##### Parameters - -• **astComponent**: `SerializedTernary` - -##### Returns - -[`Ternary`](#classesternarymd) - -##### Defined in - -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L239) - -*** - -#### serialize() - -> **serialize**(`song`): `SerializedSong` - -Serializes the chord sheet to a plain object, which can be converted to any format like JSON, XML etc -Can be deserialized using [deserialize](#deserialize) - -##### Parameters - -• **song**: [`Song`](#classessongmd) - -##### Returns - -`SerializedSong` - -object A plain JS object containing all chord sheet data - -##### Defined in - -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L49) - -*** - -#### serializeChordDefinition() - -> **serializeChordDefinition**(`chordDefinition`): `SerializedChordDefinition` - -##### Parameters - -• **chordDefinition**: [`ChordDefinition`](#classeschorddefinitionmd) - -##### Returns - -`SerializedChordDefinition` - -##### Defined in - -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L91) - -*** - -#### serializeChordLyricsPair() - -> **serializeChordLyricsPair**(`chordLyricsPair`): `object` - -##### Parameters - -• **chordLyricsPair**: [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Returns - -`object` - -###### annotation - -> **annotation**: `null` \| `string` = `chordLyricsPair.annotation` - -###### chord - -> **chord**: `null` = `null` - -###### chords - -> **chords**: `string` = `chordLyricsPair.chords` - -###### lyrics - -> **lyrics**: `null` \| `string` = `chordLyricsPair.lyrics` - -###### type - -> **type**: `string` = `CHORD_LYRICS_PAIR` - -##### Defined in - -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L114) - -*** - -#### serializeComment() - -> **serializeComment**(`comment`): `SerializedComment` - -##### Parameters - -• **comment**: [`Comment`](#classescommentmd) - -##### Returns - -`SerializedComment` - -##### Defined in - -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L142) - -*** - -#### serializeExpression() - -> **serializeExpression**(`expression`): `SerializedComponent`[] - -##### Parameters - -• **expression**: `AstType`[] - -##### Returns - -`SerializedComponent`[] - -##### Defined in - -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L138) - -*** - -#### serializeItem() - -> **serializeItem**(`item`): `SerializedComponent` - -##### Parameters - -• **item**: `AstType` - -##### Returns - -`SerializedComponent` - -##### Defined in - -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L63) - -*** - -#### serializeLine() - -> **serializeLine**(`line`): `SerializedLine` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`SerializedLine` - -##### Defined in - -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L56) - -*** - -#### serializeLiteral() - -> **serializeLiteral**(`literal`): `string` - -##### Parameters - -• **literal**: [`Literal`](#classesliteralmd) - -##### Returns - -`string` - -##### Defined in - -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L134) - -*** - -#### serializeTag() - -> **serializeTag**(`tag`): `SerializedTag` - -##### Parameters - -• **tag**: [`Tag`](#classestagmd) - -##### Returns - -`SerializedTag` - -##### Defined in - -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L100) - -*** - -#### serializeTernary() - -> **serializeTernary**(`ternary`): `object` - -##### Parameters - -• **ternary**: [`Ternary`](#classesternarymd) - -##### Returns - -`object` - -##### Defined in - -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L124) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ChordsOverWordsFormatter - -## Class: ChordsOverWordsFormatter - -Formats a song into a plain text chord sheet - -### Extends - -- [`Formatter`](#classesformattermd) - -### Constructors - -#### new ChordsOverWordsFormatter() - -> **new ChordsOverWordsFormatter**(`configuration`?): [`ChordsOverWordsFormatter`](#classeschordsoverwordsformattermd) - -Instantiate - -##### Parameters - -• **configuration?**: `Partial`\<`ConfigurationProperties`\> = `{}` - -options - -##### Returns - -[`ChordsOverWordsFormatter`](#classeschordsoverwordsformattermd) - -##### Inherited from - -[`Formatter`](#classesformattermd).[`constructor`](#constructors) - -##### Defined in - -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) - -### Properties - -#### configuration - -> **configuration**: `Configuration` - -##### Inherited from - -[`Formatter`](#classesformattermd).[`configuration`](#configuration) - -##### Defined in - -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) - -*** - -#### song - -> **song**: [`Song`](#classessongmd) - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L18) - -### Methods - -#### chordLyricsPairLength() - -> **chordLyricsPairLength**(`chordLyricsPair`, `line`): `number` - -##### Parameters - -• **chordLyricsPair**: [`ChordLyricsPair`](#classeschordlyricspairmd) - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`number` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L88) - -*** - -#### format() - -> **format**(`song`): `string` - -Formats a song into a plain text chord sheet - -##### Parameters - -• **song**: [`Song`](#classessongmd) - -The song to be formatted - -##### Returns - -`string` - -the chord sheet - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L25) - -*** - -#### formatHeader() - -> **formatHeader**(): `string` - -##### Returns - -`string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L34) - -*** - -#### formatItemBottom() - -> **formatItemBottom**(`item`, `metadata`, `line`): `string` - -##### Parameters - -• **item**: `Item` - -• **metadata**: [`Metadata`](#classesmetadatamd) - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L145) - -*** - -#### formatItemTop() - -> **formatItemTop**(`item`, `_metadata`, `line`): `string` - -##### Parameters - -• **item**: `Item` - -• **\_metadata**: [`Metadata`](#classesmetadatamd) - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L101) - -*** - -#### formatLine() - -> **formatLine**(`line`, `metadata`): `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L68) - -*** - -#### formatLineBottom() - -> **formatLineBottom**(`line`, `metadata`): `null` \| `string` - -##### Parameters - -• **line**: `any` - -• **metadata**: `any` - -##### Returns - -`null` \| `string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L126) - -*** - -#### formatLineTop() - -> **formatLineTop**(`line`, `metadata`): `null` \| `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`null` \| `string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L80) - -*** - -#### formatLineWithFormatter() - -> **formatLineWithFormatter**(`line`, `formatter`, `metadata`): `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -• **formatter** - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L134) - -*** - -#### formatParagraph() - -> **formatParagraph**(`paragraph`, `metadata`): `string` - -##### Parameters - -• **paragraph**: [`Paragraph`](#classesparagraphmd) - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L55) - -*** - -#### formatParagraphs() - -> **formatParagraphs**(): `string` - -##### Returns - -`string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L42) - -*** - -#### renderChord() - -> **renderChord**(`item`, `line`): `string` - -##### Parameters - -• **item**: [`ChordLyricsPair`](#classeschordlyricspairmd) - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`string` - -##### Defined in - -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L114) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ChordsOverWordsParser - -## Class: ChordsOverWordsParser - -Parses a chords over words sheet into a song - -It support "regular" chord sheets: - - Am C/G F C - Let it be, let it be, let it be, let it be - C G F C/E Dm C - Whisper words of wisdom, let it be - -Additionally, some chordpro features have been "ported back". For example, you can use chordpro directives: - - {title: Let it be} - {key: C} - Chorus 1: - Am - Let it be - -For convenience, you can leave out the brackets: - - title: Let it be - Chorus 1: - Am - Let it be - -You can even use a markdown style frontmatter separator to separate the header from the song: - - title: Let it be - key: C - --- - Chorus 1: - Am C/G F C - Let it be, let it be, let it be, let it be - C G F C/E Dm C - Whisper words of wisdom, let it be - -`ChordsOverWordsParser` is the better version of `ChordSheetParser`, which is deprecated. - -### Constructors - -#### new ChordsOverWordsParser() - -> **new ChordsOverWordsParser**(): [`ChordsOverWordsParser`](#classeschordsoverwordsparsermd) - -##### Returns - -[`ChordsOverWordsParser`](#classeschordsoverwordsparsermd) - -### Properties - -#### song? - -> `optional` **song**: [`Song`](#classessongmd) - -##### Defined in - -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chords_over_words_parser.ts#L51) - -### Accessors - -#### warnings - -##### Get Signature - -> **get** **warnings**(): `ParserWarning`[] - -All warnings raised during parsing the chord sheet - -###### Member - -###### Returns - -`ParserWarning`[] - -##### Defined in - -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chords_over_words_parser.ts#L58) - -### Methods - -#### parse() - -> **parse**(`chordSheet`, `options`?): [`Song`](#classessongmd) - -Parses a chords over words sheet into a song - -##### Parameters - -• **chordSheet**: `string` - -the chords over words sheet - -• **options?**: `ChordsOverWordsParserOptions` - -Parser options. - -##### Returns - -[`Song`](#classessongmd) - -The parsed song - -##### See - -https://peggyjs.org/documentation.html#using-the-parser - -##### Defined in - -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chords_over_words_parser.ts#L71) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Comment - -## Class: Comment - -Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format-specification/#overview - -### Constructors - -#### new Comment() - -> **new Comment**(`content`): [`Comment`](#classescommentmd) - -##### Parameters - -• **content**: `string` - -##### Returns - -[`Comment`](#classescommentmd) - -##### Defined in - -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L7) - -### Properties - -#### content - -> **content**: `string` - -##### Defined in - -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L5) - -### Methods - -#### clone() - -> **clone**(): [`Comment`](#classescommentmd) - -Returns a deep copy of the Comment, useful when programmatically transforming a song - -##### Returns - -[`Comment`](#classescommentmd) - -##### Defined in - -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L23) - -*** - -#### isRenderable() - -> **isRenderable**(): `boolean` - -Indicates whether a Comment should be visible in a formatted chord sheet (except for ChordPro sheets) - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L15) - -*** - -#### toString() - -> **toString**(): `string` - -##### Returns - -`string` - -##### Defined in - -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L27) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Composite - -## Class: Composite - -### Extends - -- `Evaluatable` - -### Constructors - -#### new Composite() - -> **new Composite**(`expressions`, `variable`): [`Composite`](#classescompositemd) - -##### Parameters - -• **expressions**: `Evaluatable`[] - -• **variable**: `null` \| `string` = `null` - -##### Returns - -[`Composite`](#classescompositemd) - -##### Overrides - -`Evaluatable.constructor` - -##### Defined in - -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L9) - -### Properties - -#### column - -> **column**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.column` - -##### Defined in - -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L6) - -*** - -#### expressions - -> **expressions**: `Evaluatable`[] = `[]` - -##### Defined in - -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L5) - -*** - -#### line - -> **line**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.line` - -##### Defined in - -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L4) - -*** - -#### offset - -> **offset**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.offset` - -##### Defined in - -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L8) - -*** - -#### variable - -> **variable**: `null` \| `string` - -##### Defined in - -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L7) - -### Methods - -#### clone() - -> **clone**(): [`Composite`](#classescompositemd) - -##### Returns - -[`Composite`](#classescompositemd) - -##### Overrides - -`Evaluatable.clone` - -##### Defined in - -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L25) - -*** - -#### evaluate() - -> **evaluate**(`metadata`, `metadataSeparator`): `string` - -##### Parameters - -• **metadata**: [`Metadata`](#classesmetadatamd) - -• **metadataSeparator**: `string` - -##### Returns - -`string` - -##### Overrides - -`Evaluatable.evaluate` - -##### Defined in - -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L15) - -*** - -#### isRenderable() - -> **isRenderable**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L21) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Formatter - -## Class: Formatter - -Base class for all formatters, taking care of receiving a configuration wrapping that inside a Configuration object - -### Extended by - -- [`ChordProFormatter`](#classeschordproformattermd) -- [`ChordsOverWordsFormatter`](#classeschordsoverwordsformattermd) -- [`HtmlFormatter`](#classeshtmlformattermd) -- [`TextFormatter`](#classestextformattermd) - -### Constructors - -#### new Formatter() - -> **new Formatter**(`configuration`?): [`Formatter`](#classesformattermd) - -Instantiate - -##### Parameters - -• **configuration?**: `Partial`\<`ConfigurationProperties`\> = `{}` - -options - -##### Returns - -[`Formatter`](#classesformattermd) - -##### Defined in - -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) - -### Properties - -#### configuration - -> **configuration**: `Configuration` - -##### Defined in - -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / HtmlDivFormatter - -## Class: HtmlDivFormatter - -Formats a song into HTML. It uses DIVs to align lyrics with chords, which makes it useful for responsive web pages. - -### Extends - -- [`HtmlFormatter`](#classeshtmlformattermd) - -### Constructors - -#### new HtmlDivFormatter() - -> **new HtmlDivFormatter**(`configuration`?): [`HtmlDivFormatter`](#classeshtmldivformattermd) - -Instantiate - -##### Parameters - -• **configuration?**: `Partial`\<`ConfigurationProperties`\> = `{}` - -options - -##### Returns - -[`HtmlDivFormatter`](#classeshtmldivformattermd) - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`constructor`](#constructors) - -##### Defined in - -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) - -### Properties - -#### configuration - -> **configuration**: `Configuration` - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`configuration`](#configuration) - -##### Defined in - -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) - -### Accessors - -#### cssObject - -##### Get Signature - -> **get** **cssObject**(): `CSS` - -Basic CSS, in object style à la useStyles, to use with the HTML output -For a CSS string see [cssString](#cssstring) - -Example: - - '.paragraph': { - marginBottom: '1em' - } - -###### Returns - -`CSS` - -the CSS object - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`cssObject`](#cssobject) - -##### Defined in - -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L66) - -*** - -#### defaultCss - -##### Get Signature - -> **get** **defaultCss**(): `CSS` - -###### Returns - -`CSS` - -##### Overrides - -[`HtmlFormatter`](#classeshtmlformattermd).[`defaultCss`](#defaultcss) - -##### Defined in - -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_div_formatter.ts#L44) - -*** - -#### template - -##### Get Signature - -> **get** **template**(): `Template` - -###### Returns - -`Template` - -##### Overrides - -[`HtmlFormatter`](#classeshtmlformattermd).[`template`](#template) - -##### Defined in - -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_div_formatter.ts#L40) - -### Methods - -#### cssString() - -> **cssString**(`scope`): `string` - -Generates basic CSS, optionally scoped within the provided selector, to use with the HTML output - -For example, execute cssString('.chordSheetViewer') will result in CSS like: - - .chordSheetViewer .paragraph { - margin-bottom: 1em; - } - -##### Parameters - -• **scope**: `string` = `''` - -the CSS scope to use, for example `.chordSheetViewer` - -##### Returns - -`string` - -the CSS string - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`cssString`](#cssstring) - -##### Defined in - -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L50) - -*** - -#### format() - -> **format**(`song`): `string` - -Formats a song into HTML. - -##### Parameters - -• **song**: [`Song`](#classessongmd) - -The song to be formatted - -##### Returns - -`string` - -The HTML string - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`format`](#format) - -##### Defined in - -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L26) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / HtmlFormatter - -## Class: `abstract` HtmlFormatter - -Acts as a base class for HTML formatters - -### Extends - -- [`Formatter`](#classesformattermd) - -### Extended by - -- [`HtmlDivFormatter`](#classeshtmldivformattermd) -- [`HtmlTableFormatter`](#classeshtmltableformattermd) - -### Constructors - -#### new HtmlFormatter() - -> **new HtmlFormatter**(`configuration`?): [`HtmlFormatter`](#classeshtmlformattermd) - -Instantiate - -##### Parameters - -• **configuration?**: `Partial`\<`ConfigurationProperties`\> = `{}` - -options - -##### Returns - -[`HtmlFormatter`](#classeshtmlformattermd) - -##### Inherited from - -[`Formatter`](#classesformattermd).[`constructor`](#constructors) - -##### Defined in - -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) - -### Properties - -#### configuration - -> **configuration**: `Configuration` - -##### Inherited from - -[`Formatter`](#classesformattermd).[`configuration`](#configuration) - -##### Defined in - -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) - -### Accessors - -#### cssObject - -##### Get Signature - -> **get** **cssObject**(): `CSS` - -Basic CSS, in object style à la useStyles, to use with the HTML output -For a CSS string see [cssString](#cssstring) - -Example: - - '.paragraph': { - marginBottom: '1em' - } - -###### Returns - -`CSS` - -the CSS object - -##### Defined in - -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L66) - -*** - -#### defaultCss - -##### Get Signature - -> **get** `abstract` **defaultCss**(): `CSS` - -###### Returns - -`CSS` - -##### Defined in - -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L70) - -*** - -#### template - -##### Get Signature - -> **get** `abstract` **template**(): `Template` - -###### Returns - -`Template` - -##### Defined in - -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L72) - -### Methods - -#### cssString() - -> **cssString**(`scope`): `string` - -Generates basic CSS, optionally scoped within the provided selector, to use with the HTML output - -For example, execute cssString('.chordSheetViewer') will result in CSS like: - - .chordSheetViewer .paragraph { - margin-bottom: 1em; - } - -##### Parameters - -• **scope**: `string` = `''` - -the CSS scope to use, for example `.chordSheetViewer` - -##### Returns - -`string` - -the CSS string - -##### Defined in - -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L50) - -*** - -#### format() - -> **format**(`song`): `string` - -Formats a song into HTML. - -##### Parameters - -• **song**: [`Song`](#classessongmd) - -The song to be formatted - -##### Returns - -`string` - -The HTML string - -##### Defined in - -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L26) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / HtmlTableFormatter - -## Class: HtmlTableFormatter - -Formats a song into HTML. It uses TABLEs to align lyrics with chords, which makes the HTML for things like -PDF conversion. - -### Extends - -- [`HtmlFormatter`](#classeshtmlformattermd) - -### Constructors - -#### new HtmlTableFormatter() - -> **new HtmlTableFormatter**(`configuration`?): [`HtmlTableFormatter`](#classeshtmltableformattermd) - -Instantiate - -##### Parameters - -• **configuration?**: `Partial`\<`ConfigurationProperties`\> = `{}` - -options - -##### Returns - -[`HtmlTableFormatter`](#classeshtmltableformattermd) - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`constructor`](#constructors) - -##### Defined in - -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) - -### Properties - -#### configuration - -> **configuration**: `Configuration` - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`configuration`](#configuration) - -##### Defined in - -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) - -### Accessors - -#### cssObject - -##### Get Signature - -> **get** **cssObject**(): `CSS` - -Basic CSS, in object style à la useStyles, to use with the HTML output -For a CSS string see [cssString](#cssstring) - -Example: - - '.paragraph': { - marginBottom: '1em' - } - -###### Returns - -`CSS` - -the CSS object - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`cssObject`](#cssobject) - -##### Defined in - -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L66) - -*** - -#### defaultCss - -##### Get Signature - -> **get** **defaultCss**(): `CSS` - -###### Returns - -`CSS` - -##### Overrides - -[`HtmlFormatter`](#classeshtmlformattermd).[`defaultCss`](#defaultcss) - -##### Defined in - -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_table_formatter.ts#L45) - -*** - -#### template - -##### Get Signature - -> **get** **template**(): `Template` - -###### Returns - -`Template` - -##### Overrides - -[`HtmlFormatter`](#classeshtmlformattermd).[`template`](#template) - -##### Defined in - -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_table_formatter.ts#L41) - -### Methods - -#### cssString() - -> **cssString**(`scope`): `string` - -Generates basic CSS, optionally scoped within the provided selector, to use with the HTML output - -For example, execute cssString('.chordSheetViewer') will result in CSS like: - - .chordSheetViewer .paragraph { - margin-bottom: 1em; - } - -##### Parameters - -• **scope**: `string` = `''` - -the CSS scope to use, for example `.chordSheetViewer` - -##### Returns - -`string` - -the CSS string - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`cssString`](#cssstring) - -##### Defined in - -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L50) - -*** - -#### format() - -> **format**(`song`): `string` - -Formats a song into HTML. - -##### Parameters - -• **song**: [`Song`](#classessongmd) - -The song to be formatted - -##### Returns - -`string` - -The HTML string - -##### Inherited from - -[`HtmlFormatter`](#classeshtmlformattermd).[`format`](#format) - -##### Defined in - -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L26) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Key - -## Class: Key - -Represents a key, such as Eb (symbol), #3 (numeric) or VII (numeral). - -The only function considered public API is `Key.distance` - -### Implements - -- `KeyProperties` - -### Constructors - -#### new Key() - -> **new Key**(`__namedParameters`): [`Key`](#classeskeymd) - -##### Parameters - -• **\_\_namedParameters** - -• **\_\_namedParameters.grade?**: `null` \| `number` = `null` - -• **\_\_namedParameters.minor**: `boolean` - -• **\_\_namedParameters.modifier**: `null` \| `Modifier` - -• **\_\_namedParameters.number?**: `null` \| `number` = `null` - -• **\_\_namedParameters.originalKeyString?**: `null` \| `string` = `null` - -• **\_\_namedParameters.preferredModifier**: `null` \| `Modifier` = `null` - -• **\_\_namedParameters.referenceKeyGrade?**: `null` \| `number` = `null` - -• **\_\_namedParameters.type**: `ChordType` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L249) - -### Properties - -#### grade - -> **grade**: `null` \| `number` - -##### Implementation of - -`KeyProperties.grade` - -##### Defined in - -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L51) - -*** - -#### minor - -> **minor**: `boolean` = `false` - -##### Implementation of - -`KeyProperties.minor` - -##### Defined in - -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L70) - -*** - -#### modifier - -> **modifier**: `null` \| `Modifier` - -##### Implementation of - -`KeyProperties.modifier` - -##### Defined in - -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L55) - -*** - -#### number - -> **number**: `null` \| `number` = `null` - -##### Implementation of - -`KeyProperties.number` - -##### Defined in - -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L53) - -*** - -#### originalKeyString - -> **originalKeyString**: `null` \| `string` = `null` - -##### Defined in - -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L74) - -*** - -#### preferredModifier - -> **preferredModifier**: `null` \| `Modifier` - -##### Implementation of - -`KeyProperties.preferredModifier` - -##### Defined in - -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L76) - -*** - -#### referenceKeyGrade - -> **referenceKeyGrade**: `null` \| `number` = `null` - -##### Implementation of - -`KeyProperties.referenceKeyGrade` - -##### Defined in - -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L72) - -*** - -#### type - -> **type**: `ChordType` - -##### Implementation of - -`KeyProperties.type` - -##### Defined in - -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L57) - -### Accessors - -#### effectiveGrade - -##### Get Signature - -> **get** **effectiveGrade**(): `number` - -###### Returns - -`number` - -##### Defined in - -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L285) - -*** - -#### minorSign - -##### Get Signature - -> **get** **minorSign**(): `""` \| `"m"` - -###### Returns - -`""` \| `"m"` - -##### Defined in - -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L519) - -*** - -#### note - -##### Get Signature - -> **get** **note**(): `string` - -###### Returns - -`string` - -##### Defined in - -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L490) - -*** - -#### relativeMajor - -##### Get Signature - -> **get** **relativeMajor**(): [`Key`](#classeskeymd) - -###### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L301) - -*** - -#### relativeMinor - -##### Get Signature - -> **get** **relativeMinor**(): [`Key`](#classeskeymd) - -###### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L305) - -*** - -#### unicodeModifier - -##### Get Signature - -> **get** **unicodeModifier**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Defined in - -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L59) - -### Methods - -#### canBeFlat() - -> **canBeFlat**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L595) - -*** - -#### canBeSharp() - -> **canBeSharp**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L603) - -*** - -#### changeGrade() - -> **changeGrade**(`delta`): [`Key`](#classeskeymd) - -##### Parameters - -• **delta**: `any` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L558) - -*** - -#### clone() - -> **clone**(): [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L317) - -*** - -#### distanceTo() - -> **distanceTo**(`otherKey`): `number` - -##### Parameters - -• **otherKey**: `string` \| [`Key`](#classeskeymd) - -##### Returns - -`number` - -##### Defined in - -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L280) - -*** - -#### equals() - -> **equals**(`otherKey`): `boolean` - -##### Parameters - -• **otherKey**: [`Key`](#classeskeymd) - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L410) - -*** - -#### is() - -> **is**(`type`): `boolean` - -##### Parameters - -• **type**: `ChordType` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L390) - -*** - -#### isChordSolfege() - -> **isChordSolfege**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L402) - -*** - -#### isChordSymbol() - -> **isChordSymbol**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L398) - -*** - -#### isMinor() - -> **isMinor**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L293) - -*** - -#### isNumeral() - -> **isNumeral**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L406) - -*** - -#### isNumeric() - -> **isNumeric**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L394) - -*** - -#### makeMinor() - -> **makeMinor**(): [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L297) - -*** - -#### normalize() - -> **normalize**(): [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L630) - -*** - -#### normalizeEnharmonics() - -> **normalizeEnharmonics**(`key`): [`Key`](#classeskeymd) - -##### Parameters - -• **key**: `null` \| `string` \| [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L644) - -*** - -#### setGrade() - -> **setGrade**(`newGrade`): [`Key`](#classeskeymd) - -##### Parameters - -• **newGrade**: `number` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L611) - -*** - -#### toChordSolfege() - -> **toChordSolfege**(`key`): [`Key`](#classeskeymd) - -##### Parameters - -• **key**: `string` \| [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L362) - -*** - -#### toChordSolfegeString() - -> **toChordSolfegeString**(`key`): `string` - -##### Parameters - -• **key**: [`Key`](#classeskeymd) - -##### Returns - -`string` - -##### Defined in - -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L386) - -*** - -#### toChordSymbol() - -> **toChordSymbol**(`key`): [`Key`](#classeskeymd) - -##### Parameters - -• **key**: `string` \| [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L342) - -*** - -#### toChordSymbolString() - -> **toChordSymbolString**(`key`): `string` - -##### Parameters - -• **key**: [`Key`](#classeskeymd) - -##### Returns - -`string` - -##### Defined in - -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L382) - -*** - -#### toMajor() - -> **toMajor**(): [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L309) - -*** - -#### toNumeral() - -> **toNumeral**(`key`): [`Key`](#classeskeymd) - -##### Parameters - -• **key**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L456) - -*** - -#### toNumeralString() - -> **toNumeralString**(`key`): `string` - -##### Parameters - -• **key**: `null` \| [`Key`](#classeskeymd) = `null` - -##### Returns - -`string` - -##### Defined in - -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L476) - -*** - -#### toNumeric() - -> **toNumeric**(`key`): [`Key`](#classeskeymd) - -##### Parameters - -• **key**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L431) - -*** - -#### toNumericString() - -> **toNumericString**(`key`): `string` - -##### Parameters - -• **key**: `null` \| [`Key`](#classeskeymd) = `null` - -##### Returns - -`string` - -##### Defined in - -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L452) - -*** - -#### toString() - -> **toString**(`__namedParameters`): `string` - -Returns a string representation of an object. - -##### Parameters - -• **\_\_namedParameters** = `{}` - -• **\_\_namedParameters.showMinor**: `undefined` \| `boolean` = `true` - -• **\_\_namedParameters.useUnicodeModifier**: `undefined` \| `boolean` = `false` - -##### Returns - -`string` - -##### Defined in - -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L480) - -*** - -#### transpose() - -> **transpose**(`delta`): [`Key`](#classeskeymd) - -##### Parameters - -• **delta**: `number` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L544) - -*** - -#### transposeDown() - -> **transposeDown**(): [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L582) - -*** - -#### transposeUp() - -> **transposeUp**(): [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L568) - -*** - -#### useModifier() - -> **useModifier**(`newModifier`): [`Key`](#classeskeymd) - -##### Parameters - -• **newModifier**: `null` \| `Modifier` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L625) - -*** - -#### distance() - -> `static` **distance**(`oneKey`, `otherKey`): `number` - -Calculates the distance in semitones between one key and another. - -##### Parameters - -• **oneKey**: `string` \| [`Key`](#classeskeymd) - -the key - -• **otherKey**: `string` \| [`Key`](#classeskeymd) - -the other key - -##### Returns - -`number` - -the distance in semitones - -##### Defined in - -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L245) - -*** - -#### equals() - -> `static` **equals**(`oneKey`, `otherKey`): `boolean` - -##### Parameters - -• **oneKey**: `null` \| [`Key`](#classeskeymd) - -• **otherKey**: `null` \| [`Key`](#classeskeymd) - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L419) - -*** - -#### getNumberFromKey() - -> `static` **getNumberFromKey**(`keyString`, `keyType`): `number` - -##### Parameters - -• **keyString**: `string` - -• **keyType**: `ChordType` - -##### Returns - -`number` - -##### Defined in - -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L152) - -*** - -#### isMinor() - -> `static` **isMinor**(`key`, `keyType`, `minor`): `boolean` - -##### Parameters - -• **key**: `string` - -• **keyType**: `ChordType` - -• **minor**: `undefined` \| `string` \| `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L193) - -*** - -#### keyWithModifier() - -> `static` **keyWithModifier**(`key`, `modifier`, `type`): `string` - -##### Parameters - -• **key**: `string` - -• **modifier**: `null` \| `Modifier` - -• **type**: `ChordType` - -##### Returns - -`string` - -##### Defined in - -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L161) - -*** - -#### parse() - -> `static` **parse**(`keyString`): `null` \| [`Key`](#classeskeymd) - -##### Parameters - -• **keyString**: `null` \| `string` - -##### Returns - -`null` \| [`Key`](#classeskeymd) - -##### Defined in - -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L78) - -*** - -#### parseAsType() - -> `static` **parseAsType**(`trimmed`, `keyType`): `null` \| [`Key`](#classeskeymd) - -##### Parameters - -• **trimmed**: `string` - -• **keyType**: `ChordType` - -##### Returns - -`null` \| [`Key`](#classeskeymd) - -##### Defined in - -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L93) - -*** - -#### parseOrFail() - -> `static` **parseOrFail**(`keyString`): [`Key`](#classeskeymd) - -##### Parameters - -• **keyString**: `null` \| `string` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L209) - -*** - -#### resolve() - -> `static` **resolve**(`__namedParameters`): `null` \| [`Key`](#classeskeymd) - -##### Parameters - -• **\_\_namedParameters** - -• **\_\_namedParameters.key**: `string` \| `number` - -• **\_\_namedParameters.keyType**: `ChordType` - -• **\_\_namedParameters.minor**: `string` \| `boolean` - -• **\_\_namedParameters.modifier**: `null` \| `Modifier` - -##### Returns - -`null` \| [`Key`](#classeskeymd) - -##### Defined in - -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L108) - -*** - -#### shiftGrade() - -> `static` **shiftGrade**(`grade`): `any` - -##### Parameters - -• **grade**: `number` - -##### Returns - -`any` - -##### Defined in - -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L617) - -*** - -#### toGrade() - -> `static` **toGrade**(`key`, `modifier`, `type`, `isMinor`): `null` \| `number` - -##### Parameters - -• **key**: `string` - -• **modifier**: `ModifierMaybe` - -• **type**: `ChordType` - -• **isMinor**: `boolean` - -##### Returns - -`null` \| `number` - -##### Defined in - -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L176) - -*** - -#### toString() - -> `static` **toString**(`keyStringOrObject`): `string` - -##### Parameters - -• **keyStringOrObject**: `string` \| [`Key`](#classeskeymd) - -##### Returns - -`string` - -##### Defined in - -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L235) - -*** - -#### wrap() - -> `static` **wrap**(`keyStringOrObject`): `null` \| [`Key`](#classeskeymd) - -##### Parameters - -• **keyStringOrObject**: `null` \| `string` \| [`Key`](#classeskeymd) - -##### Returns - -`null` \| [`Key`](#classeskeymd) - -##### Defined in - -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L217) - -*** - -#### wrapOrFail() - -> `static` **wrapOrFail**(`keyStringOrObject`): [`Key`](#classeskeymd) - -##### Parameters - -• **keyStringOrObject**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L225) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Line - -## Class: Line - -Represents a line in a chord sheet, consisting of items of type ChordLyricsPair or Tag - -### Constructors - -#### new Line() - -> **new Line**(`__namedParameters`): [`Line`](#classeslinemd) - -##### Parameters - -• **\_\_namedParameters** = `...` - -• **\_\_namedParameters.items**: `Item`[] - -• **\_\_namedParameters.type**: `LineType` - -##### Returns - -[`Line`](#classeslinemd) - -##### Defined in - -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L62) - -### Properties - -#### chordFont - -> **chordFont**: `Font` - -The chord font that applies to this line. Is derived from the directives: -`chordfont`, `chordsize` and `chordcolour` -See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ - -##### Defined in - -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L60) - -*** - -#### currentChordLyricsPair - -> **currentChordLyricsPair**: [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L38) - -*** - -#### items - -> **items**: `Item`[] = `[]` - -The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) or [Comment](#classescommentmd)) of which the line consists - -##### Defined in - -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L29) - -*** - -#### key - -> **key**: `null` \| `string` = `null` - -##### Defined in - -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L40) - -*** - -#### lineNumber - -> **lineNumber**: `null` \| `number` = `null` - -##### Defined in - -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L44) - -*** - -#### textFont - -> **textFont**: `Font` - -The text font that applies to this line. Is derived from the directives: -`textfont`, `textsize` and `textcolour` -See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ - -##### Defined in - -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L52) - -*** - -#### transposeKey - -> **transposeKey**: `null` \| `string` = `null` - -##### Defined in - -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L42) - -*** - -#### type - -> **type**: `LineType` = `NONE` - -The line type, This is set by the ChordProParser when it read tags like {start_of_chorus} or {start_of_verse} -Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE](#variablesnonemd) - -##### Defined in - -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L36) - -### Accessors - -#### \_tag - -##### Get Signature - -> **get** **\_tag**(): `null` \| [`Tag`](#classestagmd) - -###### Returns - -`null` \| [`Tag`](#classestagmd) - -##### Defined in - -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L223) - -### Methods - -#### addChordLyricsPair() - -> **addChordLyricsPair**(`chords`, `lyrics`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Parameters - -• **chords**: `null` \| `string` \| [`ChordLyricsPair`](#classeschordlyricspairmd) = `null` - -• **lyrics**: `null` = `null` - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L174) - -*** - -#### addComment() - -> **addComment**(`content`): [`Comment`](#classescommentmd) - -##### Parameters - -• **content**: `string` \| [`Comment`](#classescommentmd) - -##### Returns - -[`Comment`](#classescommentmd) - -##### Defined in - -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L207) - -*** - -#### addItem() - -> **addItem**(`item`): `void` - -Adds an item ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd)) to the line - -##### Parameters - -• **item**: `Item` - -The item to be added - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L83) - -*** - -#### addTag() - -> **addTag**(`nameOrTag`, `value`): [`Tag`](#classestagmd) - -##### Parameters - -• **nameOrTag**: `string` \| [`Tag`](#classestagmd) - -• **value**: `null` \| `string` = `null` - -##### Returns - -[`Tag`](#classestagmd) - -##### Defined in - -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L201) - -*** - -#### chords() - -> **chords**(`chr`): `void` - -##### Parameters - -• **chr**: `string` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L191) - -*** - -#### clone() - -> **clone**(): [`Line`](#classeslinemd) - -Returns a deep copy of the line and all of its items - -##### Returns - -[`Line`](#classeslinemd) - -##### Defined in - -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L107) - -*** - -#### ensureChordLyricsPair() - -> **ensureChordLyricsPair**(): `void` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L185) - -*** - -#### ~~hasContent()~~ - -> **hasContent**(): `boolean` - -Indicates whether the line contains items that are renderable. Please use [hasRenderableItems](#hasrenderableitems) - -##### Returns - -`boolean` - -##### Deprecated - -##### Defined in - -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L170) - -*** - -#### hasRenderableItems() - -> **hasRenderableItems**(): `boolean` - -Indicates whether the line contains items that are renderable - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L99) - -*** - -#### isBridge() - -> **isBridge**(): `boolean` - -Indicates whether the line type is BRIDGE - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L129) - -*** - -#### isChorus() - -> **isChorus**(): `boolean` - -Indicates whether the line type is [CHORUS](#variableschorusmd) - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L137) - -*** - -#### isEmpty() - -> **isEmpty**(): `boolean` - -Indicates whether the line contains any items - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L71) - -*** - -#### isGrid() - -> **isGrid**(): `boolean` - -Indicates whether the line type is GRID - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L145) - -*** - -#### isNotEmpty() - -> **isNotEmpty**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L75) - -*** - -#### isSectionEnd() - -> **isSectionEnd**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L241) - -*** - -#### isSectionStart() - -> **isSectionStart**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L237) - -*** - -#### isTab() - -> **isTab**(): `boolean` - -Indicates whether the line type is [TAB](#variablestabmd) - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L153) - -*** - -#### isVerse() - -> **isVerse**(): `boolean` - -Indicates whether the line type is [VERSE](#variablesversemd) - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L161) - -*** - -#### lyrics() - -> **lyrics**(`chr`): `void` - -##### Parameters - -• **chr**: `string` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L196) - -*** - -#### mapItems() - -> **mapItems**(`func`): [`Line`](#classeslinemd) - -##### Parameters - -• **func**: `null` \| `MapItemFunc` - -##### Returns - -[`Line`](#classeslinemd) - -##### Defined in - -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L111) - -*** - -#### set() - -> **set**(`properties`): [`Line`](#classeslinemd) - -##### Parameters - -• **properties** - -• **properties.items?**: `Item`[] - -• **properties.type?**: `LineType` - -##### Returns - -[`Line`](#classeslinemd) - -##### Defined in - -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L213) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Literal - -## Class: Literal - -### Extends - -- `Evaluatable` - -### Constructors - -#### new Literal() - -> **new Literal**(`string`): [`Literal`](#classesliteralmd) - -##### Parameters - -• **string**: `string` - -##### Returns - -[`Literal`](#classesliteralmd) - -##### Overrides - -`Evaluatable.constructor` - -##### Defined in - -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L6) - -### Properties - -#### column - -> **column**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.column` - -##### Defined in - -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L6) - -*** - -#### line - -> **line**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.line` - -##### Defined in - -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L4) - -*** - -#### offset - -> **offset**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.offset` - -##### Defined in - -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L8) - -*** - -#### string - -> **string**: `string` - -##### Defined in - -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L4) - -### Methods - -#### clone() - -> **clone**(): [`Literal`](#classesliteralmd) - -##### Returns - -[`Literal`](#classesliteralmd) - -##### Overrides - -`Evaluatable.clone` - -##### Defined in - -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L19) - -*** - -#### evaluate() - -> **evaluate**(): `string` - -##### Returns - -`string` - -##### Overrides - -`Evaluatable.evaluate` - -##### Defined in - -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L11) - -*** - -#### isRenderable() - -> **isRenderable**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L15) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Metadata - -## Class: Metadata - -Stores song metadata. Properties can be accessed using the get() method: - -const metadata = new Metadata({ author: 'John' }); -metadata.get('author') // => 'John' - -See [Metadata#get](#get) - -### Extends - -- `MetadataAccessors` - -### Constructors - -#### new Metadata() - -> **new Metadata**(`metadata`): [`Metadata`](#classesmetadatamd) - -##### Parameters - -• **metadata**: `Record`\<`string`, `string` \| `string`[]\> = `{}` - -##### Returns - -[`Metadata`](#classesmetadatamd) - -##### Overrides - -`MetadataAccessors.constructor` - -##### Defined in - -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L28) - -### Properties - -#### metadata - -> **metadata**: `Record`\<`string`, `string` \| `string`[]\> = `{}` - -##### Defined in - -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L26) - -### Accessors - -#### album - -##### Get Signature - -> **get** **album**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.album` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L38) - -*** - -#### artist - -##### Get Signature - -> **get** **artist**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.artist` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L44) - -*** - -#### capo - -##### Get Signature - -> **get** **capo**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.capo` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L28) - -*** - -#### composer - -##### Get Signature - -> **get** **composer**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.composer` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L46) - -*** - -#### copyright - -##### Get Signature - -> **get** **copyright**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.copyright` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L40) - -*** - -#### duration - -##### Get Signature - -> **get** **duration**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.duration` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L30) - -*** - -#### key - -##### Get Signature - -> **get** **key**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.key` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L22) - -*** - -#### lyricist - -##### Get Signature - -> **get** **lyricist**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.lyricist` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L42) - -*** - -#### subtitle - -##### Get Signature - -> **get** **subtitle**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.subtitle` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L26) - -*** - -#### tempo - -##### Get Signature - -> **get** **tempo**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.tempo` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L32) - -*** - -#### time - -##### Get Signature - -> **get** **time**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.time` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L34) - -*** - -#### title - -##### Get Signature - -> **get** **title**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.title` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L24) - -*** - -#### year - -##### Get Signature - -> **get** **year**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.year` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L36) - -### Methods - -#### add() - -> **add**(`key`, `value`): `void` - -##### Parameters - -• **key**: `string` - -• **value**: `string` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L46) - -*** - -#### calculateKeyFromCapo() - -> **calculateKeyFromCapo**(): `null` \| `string` - -##### Returns - -`null` \| `string` - -##### Defined in - -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L178) - -*** - -#### clone() - -> **clone**(): [`Metadata`](#classesmetadatamd) - -Returns a deep clone of this Metadata object - -##### Returns - -[`Metadata`](#classesmetadatamd) - -the cloned Metadata object - -##### Defined in - -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L174) - -*** - -#### contains() - -> **contains**(`key`): `boolean` - -##### Parameters - -• **key**: `string` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L42) - -*** - -#### get() - -> **get**(`prop`): `null` \| `string` \| `string`[] - -Reads a metadata value by key. This method supports simple value lookup, as well as fetching single array values. - -This method deprecates direct property access, eg: metadata['author'] - -Examples: - -const metadata = new Metadata({ lyricist: 'Pete', author: ['John', 'Mary'] }); -metadata.get('lyricist') // => 'Pete' -metadata.get('author') // => ['John', 'Mary'] -metadata.get('author.1') // => 'John' -metadata.get('author.2') // => 'Mary' - -Using a negative index will start counting at the end of the list: - -const metadata = new Metadata({ lyricist: 'Pete', author: ['John', 'Mary'] }); -metadata.get('author.-1') // => 'Mary' -metadata.get('author.-2') // => 'John' - -##### Parameters - -• **prop**: `string` - -the property name - -##### Returns - -`null` \| `string` \| `string`[] - -the metadata value(s). If there is only one value, it will return a String, -else it returns an array of strings. - -##### Defined in - -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L109) - -*** - -#### getArrayItem() - -> **getArrayItem**(`prop`): `null` \| `string` - -##### Parameters - -• **prop**: `string` - -##### Returns - -`null` \| `string` - -##### Defined in - -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L150) - -*** - -#### getMetadata() - -> **getMetadata**(`name`): `null` \| `string` \| `string`[] - -##### Parameters - -• **name**: `string` - -##### Returns - -`null` \| `string` \| `string`[] - -##### Overrides - -`MetadataAccessors.getMetadata` - -##### Defined in - -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L78) - -*** - -#### getSingleMetadata() - -> **getSingleMetadata**(`name`): `null` \| `string` - -##### Parameters - -• **name**: `string` - -##### Returns - -`null` \| `string` - -##### Overrides - -`MetadataAccessors.getSingleMetadata` - -##### Defined in - -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L82) - -*** - -#### merge() - -> **merge**(`metadata`): [`Metadata`](#classesmetadatamd) - -##### Parameters - -• **metadata**: `Record`\<`string`, `string` \| `string`[]\> - -##### Returns - -[`Metadata`](#classesmetadatamd) - -##### Defined in - -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L36) - -*** - -#### parseArrayKey() - -> **parseArrayKey**(`prop`): `null` \| [`string`, `number`] - -##### Parameters - -• **prop**: `string` - -##### Returns - -`null` \| [`string`, `number`] - -##### Defined in - -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L138) - -*** - -#### set() - -> **set**(`key`, `value`): `void` - -##### Parameters - -• **key**: `string` - -• **value**: `null` \| `string` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L70) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Paragraph - -## Class: Paragraph - -Represents a paragraph of lines in a chord sheet - -### Constructors - -#### new Paragraph() - -> **new Paragraph**(): [`Paragraph`](#classesparagraphmd) - -##### Returns - -[`Paragraph`](#classesparagraphmd) - -### Properties - -#### lines - -> **lines**: [`Line`](#classeslinemd)[] = `[]` - -The [Line](#classeslinemd) items of which the paragraph consists - -##### Member - -##### Defined in - -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L16) - -### Accessors - -#### contents - -##### Get Signature - -> **get** **contents**(): `string` - -Returns the paragraph contents as one string where lines are separated by newlines - -###### Returns - -`string` - -##### Defined in - -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L52) - -*** - -#### label - -##### Get Signature - -> **get** **label**(): `null` \| `string` - -Returns the label of the paragraph. The label is the value of the first section delimiter tag -in the first line. - -###### Returns - -`null` \| `string` - -##### Defined in - -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L68) - -*** - -#### type - -##### Get Signature - -> **get** **type**(): `LineType` - -Tries to determine the common type for all lines. If the types for all lines are equal, it returns that type. -If not, it returns [INDETERMINATE](#variablesindeterminatemd) - -###### Returns - -`LineType` - -##### Defined in - -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L87) - -### Methods - -#### addLine() - -> **addLine**(`line`): `void` - -##### Parameters - -• **line**: `any` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L18) - -*** - -#### hasRenderableItems() - -> **hasRenderableItems**(): `boolean` - -Indicates whether the paragraph contains lines with renderable items. - -##### Returns - -`boolean` - -##### See - -[Line.hasRenderableItems](#hasrenderableitems) - -##### Defined in - -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L103) - -*** - -#### isEmpty() - -> **isEmpty**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L107) - -*** - -#### isLiteral() - -> **isLiteral**(): `boolean` - -Indicates whether the paragraph only contains literals. If true, [contents](#contents) can be used to retrieve -the paragraph contents as one string where lines are separated by newlines. - -##### Returns - -`boolean` - -##### See - -[contents](#contents) - -##### Defined in - -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L28) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / SoftLineBreak - -## Class: SoftLineBreak - -### Constructors - -#### new SoftLineBreak() - -> **new SoftLineBreak**(): [`SoftLineBreak`](#classessoftlinebreakmd) - -##### Returns - -[`SoftLineBreak`](#classessoftlinebreakmd) - -### Methods - -#### clone() - -> **clone**(): [`SoftLineBreak`](#classessoftlinebreakmd) - -##### Returns - -[`SoftLineBreak`](#classessoftlinebreakmd) - -##### Defined in - -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/soft_line_break.ts#L2) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Song - -## Class: Song - -Represents a song in a chord sheet. Currently a chord sheet can only have one song. - -### Extends - -- `MetadataAccessors` - -### Constructors - -#### new Song() - -> **new Song**(`metadata`): [`Song`](#classessongmd) - -Creates a new {Song} instance - -##### Parameters - -• **metadata** = `{}` - -{Object|Metadata} predefined metadata - -##### Returns - -[`Song`](#classessongmd) - -##### Overrides - -`MetadataAccessors.constructor` - -##### Defined in - -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L54) - -### Properties - -#### \_bodyLines - -> **\_bodyLines**: `null` \| [`Line`](#classeslinemd)[] = `null` - -##### Defined in - -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L44) - -*** - -#### \_bodyParagraphs - -> **\_bodyParagraphs**: `null` \| [`Paragraph`](#classesparagraphmd)[] = `null` - -##### Defined in - -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L46) - -*** - -#### lines - -> **lines**: [`Line`](#classeslinemd)[] = `[]` - -The [Line](#classeslinemd) items of which the song consists - -##### Member - -##### Defined in - -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L35) - -*** - -#### metadata - -> **metadata**: [`Metadata`](#classesmetadatamd) - -The song's metadata. When there is only one value for an entry, the value is a string. Else, the value is -an array containing all unique values for the entry. - -##### Defined in - -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L42) - -*** - -#### warnings - -> **warnings**: `ParserWarning`[] = `[]` - -##### Defined in - -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L48) - -### Accessors - -#### album - -##### Get Signature - -> **get** **album**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.album` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L38) - -*** - -#### artist - -##### Get Signature - -> **get** **artist**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.artist` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L44) - -*** - -#### bodyLines - -##### Get Signature - -> **get** **bodyLines**(): [`Line`](#classeslinemd)[] - -Returns the song lines, skipping the leading empty lines (empty as in not rendering any content). This is useful -if you want to skip the "header lines": the lines that only contain meta data. - -###### Returns - -[`Line`](#classeslinemd)[] - -The song body lines - -##### Defined in - -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L64) - -*** - -#### bodyParagraphs - -##### Get Signature - -> **get** **bodyParagraphs**(): [`Paragraph`](#classesparagraphmd)[] - -Returns the song paragraphs, skipping the paragraphs that only contain empty lines -(empty as in not rendering any content) - -###### See - -[bodyLines](#bodylines) - -###### Returns - -[`Paragraph`](#classesparagraphmd)[] - -##### Defined in - -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L78) - -*** - -#### capo - -##### Get Signature - -> **get** **capo**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.capo` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L28) - -*** - -#### composer - -##### Get Signature - -> **get** **composer**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.composer` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L46) - -*** - -#### copyright - -##### Get Signature - -> **get** **copyright**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.copyright` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L40) - -*** - -#### duration - -##### Get Signature - -> **get** **duration**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.duration` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L30) - -*** - -#### expandedBodyParagraphs - -##### Get Signature - -> **get** **expandedBodyParagraphs**(): [`Paragraph`](#classesparagraphmd)[] - -The body paragraphs of the song, with any `{chorus}` tag expanded into the targeted chorus - -###### Returns - -[`Paragraph`](#classesparagraphmd)[] - -##### Defined in - -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L156) - -*** - -#### key - -##### Get Signature - -> **get** **key**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.key` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L22) - -*** - -#### lyricist - -##### Get Signature - -> **get** **lyricist**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.lyricist` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L42) - -*** - -#### paragraphs - -##### Get Signature - -> **get** **paragraphs**(): [`Paragraph`](#classesparagraphmd)[] - -The [Paragraph](#classesparagraphmd) items of which the song consists - -###### Member - -###### Returns - -[`Paragraph`](#classesparagraphmd)[] - -##### Defined in - -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L148) - -*** - -#### subtitle - -##### Get Signature - -> **get** **subtitle**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.subtitle` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L26) - -*** - -#### tempo - -##### Get Signature - -> **get** **tempo**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.tempo` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L32) - -*** - -#### time - -##### Get Signature - -> **get** **time**(): `null` \| `string` \| `string`[] - -###### Returns - -`null` \| `string` \| `string`[] - -##### Inherited from - -`MetadataAccessors.time` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L34) - -*** - -#### title - -##### Get Signature - -> **get** **title**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.title` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L24) - -*** - -#### year - -##### Get Signature - -> **get** **year**(): `null` \| `string` - -###### Returns - -`null` \| `string` - -##### Inherited from - -`MetadataAccessors.year` - -##### Defined in - -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L36) - -### Methods - -#### addLine() - -> **addLine**(`line`): `void` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L380) - -*** - -#### changeKey() - -> **changeKey**(`newKey`): [`Song`](#classessongmd) - -Returns a copy of the song with the key set to the specified key. It changes: -- the value for `key` in the [metadata](#metadata) set -- any existing `key` directive -- all chords, those are transposed according to the distance between the current and the new key - -##### Parameters - -• **newKey**: `string` \| [`Key`](#classeskeymd) - -The new key. - -##### Returns - -[`Song`](#classessongmd) - -The changed song - -##### Defined in - -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L304) - -*** - -#### changeMetadata() - -> **changeMetadata**(`name`, `value`): [`Song`](#classessongmd) - -Returns a copy of the song with the directive value set to the specified value. -- when there is a matching directive in the song, it will update the directive -- when there is no matching directive, it will be inserted -If `value` is `null` it will act as a delete, any directive matching `name` will be removed. - -##### Parameters - -• **name**: `string` - -The directive name - -• **value**: `null` \| `string` - -The value to set, or `null` to remove the directive - -##### Returns - -[`Song`](#classessongmd) - -##### Defined in - -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L357) - -*** - -#### clone() - -> **clone**(): [`Song`](#classessongmd) - -Returns a deep clone of the song - -##### Returns - -[`Song`](#classessongmd) - -The cloned song - -##### Defined in - -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L186) - -*** - -#### foreachItem() - -> **foreachItem**(`func`): `void` - -##### Parameters - -• **func**: `EachItemCallback` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L417) - -*** - -#### getChordDefinitions() - -> **getChordDefinitions**(): `Record`\<`string`, [`ChordDefinition`](#classeschorddefinitionmd)\> - -Returns all chord definitions from the song. -Definitions are made using the `{chord}` or `{define}` directive. -A chord definitions overrides a previous chord definition for the exact same chord. - -##### Returns - -`Record`\<`string`, [`ChordDefinition`](#classeschorddefinitionmd)\> - -the chord definitions - -##### See - - - https://chordpro.org/chordpro/directives-define/ - - https://chordpro.org/chordpro/directives-chord/ - -##### Defined in - -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L453) - -*** - -#### getChords() - -> **getChords**(): `string`[] - -Returns all unique chords used in the song - -##### Returns - -`string`[] - -the chords - -##### Defined in - -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L427) - -*** - -#### getMetadata() - -> **getMetadata**(`name`): `null` \| `string` \| `string`[] - -##### Parameters - -• **name**: `string` - -##### Returns - -`null` \| `string` \| `string`[] - -##### Overrides - -`MetadataAccessors.getMetadata` - -##### Defined in - -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L194) - -*** - -#### getSingleMetadata() - -> **getSingleMetadata**(`name`): `null` \| `string` - -##### Parameters - -• **name**: `string` - -##### Returns - -`null` \| `string` - -##### Overrides - -`MetadataAccessors.getSingleMetadata` - -##### Defined in - -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L198) - -*** - -#### linesToParagraphs() - -> **linesToParagraphs**(`lines`): [`Paragraph`](#classesparagraphmd)[] - -##### Parameters - -• **lines**: [`Line`](#classeslinemd)[] - -##### Returns - -[`Paragraph`](#classesparagraphmd)[] - -##### Defined in - -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L164) - -*** - -#### mapItems() - -> **mapItems**(`func`): [`Song`](#classessongmd) - -Change the song contents inline. Return a new Item to replace it. Return `null` to remove it. - -##### Parameters - -• **func**: `MapItemsCallback` - -the callback function - -##### Returns - -[`Song`](#classessongmd) - -the changed song - -##### Example - -```ts -// transpose all chords: -song.mapItems((item) => { - if (item instanceof ChordLyricsPair) { - return item.transpose(2, 'D'); - } - - return item; -}); -``` - -##### Defined in - -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L398) - -*** - -#### mapLines() - -> **mapLines**(`func`): [`Song`](#classessongmd) - -Change the song contents inline. Return a new [Line](#classeslinemd) to replace it. Return `null` to remove it. - -##### Parameters - -• **func**: `MapLinesCallback` - -the callback function - -##### Returns - -[`Song`](#classessongmd) - -the changed song - -##### Example - -```ts -// remove lines with only Tags: -song.mapLines((line) => { - if (line.items.every(item => item instanceof Tag)) { - return null; - } - - return line; -}); -``` - -##### Defined in - -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L485) - -*** - -#### requireCurrentKey() - -> **requireCurrentKey**(): [`Key`](#classeskeymd) - -##### Returns - -[`Key`](#classeskeymd) - -##### Defined in - -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L332) - -*** - -#### selectRenderableItems() - -> **selectRenderableItems**(`items`): ([`Line`](#classeslinemd) \| [`Paragraph`](#classesparagraphmd))[] - -##### Parameters - -• **items**: ([`Line`](#classeslinemd) \| [`Paragraph`](#classesparagraphmd))[] - -##### Returns - -([`Line`](#classeslinemd) \| [`Paragraph`](#classesparagraphmd))[] - -##### Defined in - -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L86) - -*** - -#### setCapo() - -> **setCapo**(`capo`): [`Song`](#classessongmd) - -Returns a copy of the song with the key value set to the specified capo. It changes: -- the value for `capo` in the [metadata](#metadata) set -- any existing `capo` directive - -##### Parameters - -• **capo**: `null` \| `number` - -the capo. Passing `null` will: -- remove the current key from [metadata](#metadata) -- remove any `capo` directive - -##### Returns - -[`Song`](#classessongmd) - -The changed song - -##### Defined in - -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L225) - -*** - -#### setKey() - -> **setKey**(`key`): [`Song`](#classessongmd) - -Returns a copy of the song with the key value set to the specified key. It changes: -- the value for `key` in the [metadata](#metadata) set -- any existing `key` directive - -##### Parameters - -• **key**: `null` \| `string` \| `number` - -the key. Passing `null` will: -- remove the current key from [metadata](#metadata) -- remove any `key` directive - -##### Returns - -[`Song`](#classessongmd) - -The changed song - -##### Defined in - -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L211) - -*** - -#### setMetadata() - -> **setMetadata**(`name`, `value`): `void` - -##### Parameters - -• **name**: `string` - -• **value**: `string` - -##### Returns - -`void` - -##### Defined in - -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L190) - -*** - -#### transpose() - -> **transpose**(`delta`, `options`?): [`Song`](#classessongmd) - -Transposes the song by the specified delta. It will: -- transpose all chords, see: [Chord#transpose](#transpose) -- transpose the song key in [metadata](#metadata) -- update any existing `key` directive - -##### Parameters - -• **delta**: `number` - -The number of semitones (positive or negative) to transpose with - -• **options?** = `{}` - -options - -• **options.normalizeChordSuffix?**: `undefined` \| `boolean` = `false` - -whether to normalize the chord suffixes after transposing - -##### Returns - -[`Song`](#classessongmd) - -The transposed song - -##### Defined in - -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L252) - -*** - -#### transposeDown() - -> **transposeDown**(`options`?): [`Song`](#classessongmd) - -Transposes the song down by one semitone. It will: -- transpose all chords, see: [Chord#transpose](#transpose) -- transpose the song key in [metadata](#metadata) -- update any existing `key` directive - -##### Parameters - -• **options?** = `{}` - -options - -• **options.normalizeChordSuffix?**: `undefined` \| `boolean` = `false` - -whether to normalize the chord suffixes after transposing - -##### Returns - -[`Song`](#classessongmd) - -The transposed song - -##### Defined in - -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L292) - -*** - -#### transposeUp() - -> **transposeUp**(`options`?): [`Song`](#classessongmd) - -Transposes the song up by one semitone. It will: -- transpose all chords, see: [Chord#transpose](#transpose) -- transpose the song key in [metadata](#metadata) -- update any existing `key` directive - -##### Parameters - -• **options?** = `{}` - -options - -• **options.normalizeChordSuffix?**: `undefined` \| `boolean` = `false` - -whether to normalize the chord suffixes after transposing - -##### Returns - -[`Song`](#classessongmd) - -The transposed song - -##### Defined in - -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L279) - -*** - -#### useModifier() - -> **useModifier**(`modifier`): [`Song`](#classessongmd) - -Returns a copy of the song with all chords changed to the specified modifier. - -##### Parameters - -• **modifier**: `Modifier` - -the new modifier - -##### Returns - -[`Song`](#classessongmd) - -the changed song - -##### Defined in - -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L322) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Tag - -## Class: Tag - -Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-directives/ - -### Extends - -- `AstComponent` - -### Constructors - -#### new Tag() - -> **new Tag**(`name`, `value`, `traceInfo`): [`Tag`](#classestagmd) - -##### Parameters - -• **name**: `string` - -• **value**: `null` \| `string` = `null` - -• **traceInfo**: `null` \| `TraceInfo` = `null` - -##### Returns - -[`Tag`](#classestagmd) - -##### Overrides - -`AstComponent.constructor` - -##### Defined in - -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L412) - -### Properties - -#### \_isMetaTag - -> **\_isMetaTag**: `boolean` = `false` - -##### Defined in - -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L402) - -*** - -#### \_name - -> **\_name**: `string` = `''` - -##### Defined in - -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L406) - -*** - -#### \_originalName - -> **\_originalName**: `string` = `''` - -##### Defined in - -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L404) - -*** - -#### \_value - -> **\_value**: `string` = `''` - -##### Defined in - -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L408) - -*** - -#### chordDefinition? - -> `optional` **chordDefinition**: [`ChordDefinition`](#classeschorddefinitionmd) - -##### Defined in - -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L410) - -*** - -#### column - -> **column**: `null` \| `number` = `null` - -##### Inherited from - -`AstComponent.column` - -##### Defined in - -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L6) - -*** - -#### line - -> **line**: `null` \| `number` = `null` - -##### Inherited from - -`AstComponent.line` - -##### Defined in - -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L4) - -*** - -#### offset - -> **offset**: `null` \| `number` = `null` - -##### Inherited from - -`AstComponent.offset` - -##### Defined in - -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L8) - -### Accessors - -#### name - -##### Get Signature - -> **get** **name**(): `string` - -The tag full name. When the original tag used the short name, `name` will return the full name. - -###### Member - -###### Returns - -`string` - -##### Set Signature - -> **set** **name**(`name`): `void` - -###### Parameters - -• **name**: `string` - -###### Returns - -`void` - -##### Defined in - -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L491) - -*** - -#### originalName - -##### Get Signature - -> **get** **originalName**(): `string` - -The original tag name that was used to construct the tag. - -###### Member - -###### Returns - -`string` - -##### Defined in - -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L500) - -*** - -#### value - -##### Get Signature - -> **get** **value**(): `string` - -The tag value - -###### Member - -###### Returns - -`string` - -##### Set Signature - -> **set** **value**(`value`): `void` - -###### Parameters - -• **value**: `string` - -###### Returns - -`void` - -##### Defined in - -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L513) - -### Methods - -#### clone() - -> **clone**(): [`Tag`](#classestagmd) - -Returns a clone of the tag. - -##### Returns - -[`Tag`](#classestagmd) - -The cloned tag - -##### Overrides - -`AstComponent.clone` - -##### Defined in - -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L555) - -*** - -#### hasRenderableLabel() - -> **hasRenderableLabel**(): `boolean` - -Check whether this tag's label (if any) should be rendered, as applicable to tags like -`start_of_verse` and `start_of_chorus`. -See https://chordpro.org/chordpro/directives-env_chorus/, https://chordpro.org/chordpro/directives-env_verse/, -https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chordpro/directives-env_tab/ - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L539) - -*** - -#### hasValue() - -> **hasValue**(): `boolean` - -Checks whether the tag value is a non-empty string. - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L521) - -*** - -#### isInlineFontTag() - -> **isInlineFontTag**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L477) - -*** - -#### isMetaTag() - -> **isMetaTag**(): `boolean` - -Checks whether the tag is either a standard meta tag or a custom meta directive (`{x_some_name}`) - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L547) - -*** - -#### isRenderable() - -> **isRenderable**(): `boolean` - -Checks whether the tag is usually rendered inline. It currently only applies to comment tags. - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L529) - -*** - -#### isSectionDelimiter() - -> **isSectionDelimiter**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L465) - -*** - -#### isSectionEnd() - -> **isSectionEnd**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L473) - -*** - -#### isSectionStart() - -> **isSectionStart**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L469) - -*** - -#### set() - -> **set**(`__namedParameters`): [`Tag`](#classestagmd) - -##### Parameters - -• **\_\_namedParameters** - -• **\_\_namedParameters.value**: `string` - -##### Returns - -[`Tag`](#classestagmd) - -##### Defined in - -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L563) - -*** - -#### toString() - -> **toString**(): `string` - -Returns a string representation of an object. - -##### Returns - -`string` - -##### Defined in - -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L559) - -*** - -#### parse() - -> `static` **parse**(`tag`): `null` \| [`Tag`](#classestagmd) - -##### Parameters - -• **tag**: `string` \| [`Tag`](#classestagmd) - -##### Returns - -`null` \| [`Tag`](#classestagmd) - -##### Defined in - -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L437) - -*** - -#### parseOrFail() - -> `static` **parseOrFail**(`tag`): [`Tag`](#classestagmd) - -##### Parameters - -• **tag**: `string` \| [`Tag`](#classestagmd) - -##### Returns - -[`Tag`](#classestagmd) - -##### Defined in - -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L455) - -*** - -#### parseWithRegex() - -> `static` **parseWithRegex**(`tag`, `regex`): `null` \| [`Tag`](#classestagmd) - -##### Parameters - -• **tag**: `string` - -• **regex**: `RegExp` - -##### Returns - -`null` \| [`Tag`](#classestagmd) - -##### Defined in - -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L445) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / Ternary - -## Class: Ternary - -### Extends - -- `Evaluatable` - -### Constructors - -#### new Ternary() - -> **new Ternary**(`__namedParameters`): [`Ternary`](#classesternarymd) - -##### Parameters - -• **\_\_namedParameters**: `TernaryProperties` - -##### Returns - -[`Ternary`](#classesternarymd) - -##### Overrides - -`Evaluatable.constructor` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L24) - -### Properties - -#### column - -> **column**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.column` - -##### Defined in - -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L6) - -*** - -#### falseExpression - -> **falseExpression**: `Evaluatable`[] = `[]` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L22) - -*** - -#### line - -> **line**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.line` - -##### Defined in - -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L4) - -*** - -#### offset - -> **offset**: `null` \| `number` = `null` - -##### Inherited from - -`Evaluatable.offset` - -##### Defined in - -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L8) - -*** - -#### trueExpression - -> **trueExpression**: `Evaluatable`[] = `[]` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L20) - -*** - -#### valueTest - -> **valueTest**: `null` \| `string` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L18) - -*** - -#### variable - -> **variable**: `null` \| `string` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L16) - -### Methods - -#### clone() - -> **clone**(): [`Ternary`](#classesternarymd) - -##### Returns - -[`Ternary`](#classesternarymd) - -##### Overrides - -`Evaluatable.clone` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L98) - -*** - -#### evaluate() - -> **evaluate**(`metadata`, `metadataSeparator`?, `upperContext`?): `string` - -Evaluate the meta expression - -##### Parameters - -• **metadata**: [`Metadata`](#classesmetadatamd) - -The metadata object to use for evaluating the expression - -• **metadataSeparator?**: `string` - -The metadata separator to use if necessary - -• **upperContext?**: `null` \| `string` = `null` - -##### Returns - -`string` - -The evaluated expression - -##### Overrides - -`Evaluatable.evaluate` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L48) - -*** - -#### evaluateForTruthyValue() - -> **evaluateForTruthyValue**(`metadata`, `metadataSeparator`, `value`): `string` - -##### Parameters - -• **metadata**: [`Metadata`](#classesmetadatamd) - -• **metadataSeparator**: `string` - -• **value**: `string` \| `string`[] - -##### Returns - -`string` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L86) - -*** - -#### evaluateToString() - -> **evaluateToString**(`value`, `metadataSeparator`): `string` - -##### Parameters - -• **value**: `string` \| `string`[] - -• **metadataSeparator**: `string` - -##### Returns - -`string` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L60) - -*** - -#### evaluateWithVariable() - -> **evaluateWithVariable**(`metadata`, `metadataSeparator`): `string` - -##### Parameters - -• **metadata**: [`Metadata`](#classesmetadatamd) - -• **metadataSeparator**: `string` - -##### Returns - -`string` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L68) - -*** - -#### isRenderable() - -> **isRenderable**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L94) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / TextFormatter - -## Class: TextFormatter - -Formats a song into a plain text chord sheet - -### Extends - -- [`Formatter`](#classesformattermd) - -### Constructors - -#### new TextFormatter() - -> **new TextFormatter**(`configuration`?): [`TextFormatter`](#classestextformattermd) - -Instantiate - -##### Parameters - -• **configuration?**: `Partial`\<`ConfigurationProperties`\> = `{}` - -options - -##### Returns - -[`TextFormatter`](#classestextformattermd) - -##### Inherited from - -[`Formatter`](#classesformattermd).[`constructor`](#constructors) - -##### Defined in - -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) - -### Properties - -#### configuration - -> **configuration**: `Configuration` - -##### Inherited from - -[`Formatter`](#classesformattermd).[`configuration`](#configuration) - -##### Defined in - -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) - -*** - -#### song - -> **song**: [`Song`](#classessongmd) - -##### Defined in - -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L17) - -### Methods - -#### chordLyricsPairLength() - -> **chordLyricsPairLength**(`chordLyricsPair`, `line`): `number` - -##### Parameters - -• **chordLyricsPair**: [`ChordLyricsPair`](#classeschordlyricspairmd) - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`number` - -##### Defined in - -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L102) - -*** - -#### format() - -> **format**(`song`): `string` - -Formats a song into a plain text chord sheet - -##### Parameters - -• **song**: [`Song`](#classessongmd) - -The song to be formatted - -##### Returns - -`string` - -the chord sheet - -##### Defined in - -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L24) - -*** - -#### formatHeader() - -> **formatHeader**(): `string` - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L33) - -*** - -#### formatItemBottom() - -> **formatItemBottom**(`item`, `metadata`, `line`): `string` - -##### Parameters - -• **item**: `Item` - -• **metadata**: [`Metadata`](#classesmetadatamd) - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L161) - -*** - -#### formatItemTop() - -> **formatItemTop**(`item`, `_metadata`, `line`): `string` - -##### Parameters - -• **item**: `Item` - -• **\_metadata**: [`Metadata`](#classesmetadatamd) - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L129) - -*** - -#### formatLine() - -> **formatLine**(`line`, `metadata`): `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L66) - -*** - -#### formatLineBottom() - -> **formatLineBottom**(`line`, `metadata`): `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L142) - -*** - -#### formatLineTop() - -> **formatLineTop**(`line`, `metadata`): `null` \| `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`null` \| `string` - -##### Defined in - -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L94) - -*** - -#### formatLineWithFormatter() - -> **formatLineWithFormatter**(`line`, `formatter`, `metadata`): `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -• **formatter** - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L150) - -*** - -#### formatParagraph() - -> **formatParagraph**(`paragraph`, `metadata`): `string` - -##### Parameters - -• **paragraph**: [`Paragraph`](#classesparagraphmd) - -• **metadata**: [`Metadata`](#classesmetadatamd) - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L53) - -*** - -#### formatParagraphs() - -> **formatParagraphs**(): `string` - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L44) - -*** - -#### formatSubTitle() - -> **formatSubTitle**(`subtitle`): `string` - -##### Parameters - -• **subtitle**: `null` \| `string` - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L86) - -*** - -#### formatTitle() - -> **formatTitle**(`title`): `string` - -##### Parameters - -• **title**: `null` \| `string` - -##### Returns - -`string` - -##### Defined in - -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L78) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / UltimateGuitarParser - -## Class: UltimateGuitarParser - -Parses an Ultimate Guitar chord sheet with metadata -Inherits from [ChordSheetParser](#classeschordsheetparsermd) - -### Extends - -- [`ChordSheetParser`](#classeschordsheetparsermd) - -### Constructors - -#### new UltimateGuitarParser() - -> **new UltimateGuitarParser**(`options`?): [`UltimateGuitarParser`](#classesultimateguitarparsermd) - -Instantiate a chord sheet parser - -##### Parameters - -• **options?** = `{}` - -options - -• **options.preserveWhitespace?**: `boolean` = `true` - -whether to preserve trailing whitespace for chords - -##### Returns - -[`UltimateGuitarParser`](#classesultimateguitarparsermd) - -##### Overrides - -[`ChordSheetParser`](#classeschordsheetparsermd).[`constructor`](#constructors) - -##### Defined in - -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L38) - -### Properties - -#### chordLyricsPair - -> **chordLyricsPair**: `null` \| [`ChordLyricsPair`](#classeschordlyricspairmd) = `null` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`chordLyricsPair`](#chordlyricspair) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L31) - -*** - -#### currentLine - -> **currentLine**: `number` = `0` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`currentLine`](#currentline) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L35) - -*** - -#### currentSectionType - -> **currentSectionType**: `null` \| `string` = `null` - -##### Defined in - -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L31) - -*** - -#### lineCount - -> **lineCount**: `number` = `0` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`lineCount`](#linecount) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L37) - -*** - -#### lines - -> **lines**: `string`[] = `[]` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`lines`](#lines) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L33) - -*** - -#### preserveWhitespace - -> **preserveWhitespace**: `boolean` = `true` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`preserveWhitespace`](#preservewhitespace) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L23) - -*** - -#### processingText - -> **processingText**: `boolean` = `true` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`processingText`](#processingtext) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L21) - -*** - -#### song - -> **song**: [`Song`](#classessongmd) - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`song`](#song) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L25) - -*** - -#### songBuilder - -> **songBuilder**: `SongBuilder` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`songBuilder`](#songbuilder) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L27) - -*** - -#### songLine - -> **songLine**: `null` \| [`Line`](#classeslinemd) = `null` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`songLine`](#songline) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L29) - -### Methods - -#### addCharacter() - -> **addCharacter**(`chr`, `nextChar`): `void` - -##### Parameters - -• **chr**: `any` - -• **nextChar**: `any` - -##### Returns - -`void` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`addCharacter`](#addcharacter) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L160) - -*** - -#### endOfSong() - -> **endOfSong**(): `void` - -##### Returns - -`void` - -##### Overrides - -[`ChordSheetParser`](#classeschordsheetparsermd).[`endOfSong`](#endofsong) - -##### Defined in - -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L79) - -*** - -#### endSection() - -> **endSection**(`__namedParameters`): `void` - -##### Parameters - -• **\_\_namedParameters** = `{}` - -• **\_\_namedParameters.addNewLine**: `undefined` \| `boolean` = `true` - -##### Returns - -`void` - -##### Defined in - -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L100) - -*** - -#### ensureChordLyricsPairInitialized() - -> **ensureChordLyricsPairInitialized**(): `void` - -##### Returns - -`void` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`ensureChordLyricsPairInitialized`](#ensurechordlyricspairinitialized) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L177) - -*** - -#### hasNextLine() - -> **hasNextLine**(): `boolean` - -##### Returns - -`boolean` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`hasNextLine`](#hasnextline) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L124) - -*** - -#### initialize() - -> **initialize**(`document`, `song`): `void` - -##### Parameters - -• **document**: `any` - -• **song**: `null` \| [`Song`](#classessongmd) = `null` - -##### Returns - -`void` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`initialize`](#initialize) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L107) - -*** - -#### isSectionEnd() - -> **isSectionEnd**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L72) - -*** - -#### parse() - -> **parse**(`chordSheet`, `options`?): [`Song`](#classessongmd) - -Parses a chord sheet into a song - -##### Parameters - -• **chordSheet**: `string` - -The ChordPro chord sheet - -• **options?** = `{}` - -Optional parser options - -• **options.song?**: [`Song`](#classessongmd) - -The [Song](#classessongmd) to store the song data in - -##### Returns - -[`Song`](#classessongmd) - -The parsed song - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`parse`](#parse) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L70) - -*** - -#### parseLine() - -> **parseLine**(`line`): `void` - -##### Parameters - -• **line**: `any` - -##### Returns - -`void` - -##### Overrides - -[`ChordSheetParser`](#classeschordsheetparsermd).[`parseLine`](#parseline) - -##### Defined in - -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L42) - -*** - -#### parseLyricsWithChords() - -> **parseLyricsWithChords**(`chordsLine`, `lyricsLine`): `void` - -##### Parameters - -• **chordsLine**: `any` - -• **lyricsLine**: `any` - -##### Returns - -`void` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`parseLyricsWithChords`](#parselyricswithchords) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L128) - -*** - -#### parseNonEmptyLine() - -> **parseNonEmptyLine**(`line`): `void` - -##### Parameters - -• **line**: `any` - -##### Returns - -`void` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`parseNonEmptyLine`](#parsenonemptyline) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L94) - -*** - -#### processCharacters() - -> **processCharacters**(`chordsLine`, `lyricsLine`): `void` - -##### Parameters - -• **chordsLine**: `any` - -• **lyricsLine**: `any` - -##### Returns - -`void` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`processCharacters`](#processcharacters) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L146) - -*** - -#### readLine() - -> **readLine**(): `string` - -##### Returns - -`string` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`readLine`](#readline) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L118) - -*** - -#### shouldAddCharacterToChords() - -> **shouldAddCharacterToChords**(`nextChar`): `any` - -##### Parameters - -• **nextChar**: `any` - -##### Returns - -`any` - -##### Inherited from - -[`ChordSheetParser`](#classeschordsheetparsermd).[`shouldAddCharacterToChords`](#shouldaddcharactertochords) - -##### Defined in - -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L173) - -*** - -#### startNewLine() - -> **startNewLine**(): `void` - -##### Returns - -`void` - -##### Defined in - -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L113) - -*** - -#### startSection() - -> **startSection**(`sectionType`, `label`): `void` - -##### Parameters - -• **sectionType**: `"chorus"` \| `"verse"` - -• **label**: `string` - -##### Returns - -`void` - -##### Defined in - -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L87) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -# chordsheetjs - -## Classes - -- [Chord](#classeschordmd) -- [ChordDefinition](#classeschorddefinitionmd) -- [ChordLyricsPair](#classeschordlyricspairmd) -- [ChordProFormatter](#classeschordproformattermd) -- [ChordProParser](#classeschordproparsermd) -- [ChordSheetParser](#classeschordsheetparsermd) -- [ChordSheetSerializer](#classeschordsheetserializermd) -- [ChordsOverWordsFormatter](#classeschordsoverwordsformattermd) -- [ChordsOverWordsParser](#classeschordsoverwordsparsermd) -- [Comment](#classescommentmd) -- [Composite](#classescompositemd) -- [Formatter](#classesformattermd) -- [HtmlDivFormatter](#classeshtmldivformattermd) -- [HtmlFormatter](#classeshtmlformattermd) -- [HtmlTableFormatter](#classeshtmltableformattermd) -- [Key](#classeskeymd) -- [Line](#classeslinemd) -- [Literal](#classesliteralmd) -- [Metadata](#classesmetadatamd) -- [Paragraph](#classesparagraphmd) -- [SoftLineBreak](#classessoftlinebreakmd) -- [Song](#classessongmd) -- [Tag](#classestagmd) -- [Ternary](#classesternarymd) -- [TextFormatter](#classestextformattermd) -- [UltimateGuitarParser](#classesultimateguitarparsermd) - -## Variables - -- [ABC](#variablesabcmd) -- [CHORUS](#variableschorusmd) -- [default](#variablesdefaultmd) -- [INDETERMINATE](#variablesindeterminatemd) -- [LILYPOND](#variableslilypondmd) -- [NONE](#variablesnonemd) -- [NUMERAL](#variablesnumeralmd) -- [NUMERIC](#variablesnumericmd) -- [SOLFEGE](#variablessolfegemd) -- [SYMBOL](#variablessymbolmd) -- [TAB](#variablestabmd) -- [templateHelpers](#variablestemplatehelpersmd) -- [VERSE](#variablesversemd) - -# Variables - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ABC - -## Variable: ABC - -> `const` **ABC**: `"abc"` = `'abc'` - -Used to mark a section as ABC music notation - -### Constant - -### Defined in - -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L62) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / CHORUS - -## Variable: CHORUS - -> `const` **CHORUS**: `"chorus"` = `'chorus'` - -Used to mark a paragraph as chorus - -### Constant - -### Defined in - -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L13) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / INDETERMINATE - -## Variable: INDETERMINATE - -> `const` **INDETERMINATE**: `"indeterminate"` = `'indeterminate'` - -Used to mark a paragraph as containing lines with both verse and chorus type - -### Constant - -### Defined in - -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L27) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / LILYPOND - -## Variable: LILYPOND - -> `const` **LILYPOND**: `"ly"` = `'ly'` - -Used to mark a section as Lilypond notation - -### Constant - -### Defined in - -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L55) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / NONE - -## Variable: NONE - -> `const` **NONE**: `"none"` = `'none'` - -Used to mark a paragraph as not containing a line marked with a type - -### Constant - -### Defined in - -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L34) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / NUMERAL - -## Variable: NUMERAL - -> `const` **NUMERAL**: `"numeral"` = `'numeral'` - -### Defined in - -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L77) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / NUMERIC - -## Variable: NUMERIC - -> `const` **NUMERIC**: `"numeric"` = `'numeric'` - -### Defined in - -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L76) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / SOLFEGE - -## Variable: SOLFEGE - -> `const` **SOLFEGE**: `"solfege"` = `'solfege'` - -### Defined in - -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L78) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / SYMBOL - -## Variable: SYMBOL - -> `const` **SYMBOL**: `"symbol"` = `'symbol'` - -### Defined in - -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L75) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / TAB - -## Variable: TAB - -> `const` **TAB**: `"tab"` = `'tab'` - -Used to mark a paragraph as tab - -### Constant - -### Defined in - -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L41) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / VERSE - -## Variable: VERSE - -> `const` **VERSE**: `"verse"` = `'verse'` - -Used to mark a paragraph as verse - -### Constant - -### Defined in - -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L48) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / default - -## Variable: default - -> **default**: `object` - -### Type declaration - -#### Chord - -> **Chord**: *typeof* [`Chord`](#classeschordmd) - -#### ChordDefinition - -> **ChordDefinition**: *typeof* [`ChordDefinition`](#classeschorddefinitionmd) - -#### ChordLyricsPair - -> **ChordLyricsPair**: *typeof* [`ChordLyricsPair`](#classeschordlyricspairmd) - -#### ChordProFormatter - -> **ChordProFormatter**: *typeof* [`ChordProFormatter`](#classeschordproformattermd) - -#### ChordProParser - -> **ChordProParser**: *typeof* [`ChordProParser`](#classeschordproparsermd) - -#### ChordSheetParser - -> **ChordSheetParser**: *typeof* [`ChordSheetParser`](#classeschordsheetparsermd) - -#### ChordSheetSerializer - -> **ChordSheetSerializer**: *typeof* [`ChordSheetSerializer`](#classeschordsheetserializermd) - -#### ChordsOverWordsFormatter - -> **ChordsOverWordsFormatter**: *typeof* [`ChordsOverWordsFormatter`](#classeschordsoverwordsformattermd) - -#### ChordsOverWordsParser - -> **ChordsOverWordsParser**: *typeof* [`ChordsOverWordsParser`](#classeschordsoverwordsparsermd) - -#### CHORUS - -> **CHORUS**: `string` - -#### Comment - -> **Comment**: *typeof* [`Comment`](#classescommentmd) - -#### Composite - -> **Composite**: *typeof* [`Composite`](#classescompositemd) - -#### HtmlDivFormatter - -> **HtmlDivFormatter**: *typeof* [`HtmlDivFormatter`](#classeshtmldivformattermd) - -#### HtmlTableFormatter - -> **HtmlTableFormatter**: *typeof* [`HtmlTableFormatter`](#classeshtmltableformattermd) - -#### INDETERMINATE - -> **INDETERMINATE**: `string` - -#### Line - -> **Line**: *typeof* [`Line`](#classeslinemd) - -#### Literal - -> **Literal**: *typeof* [`Literal`](#classesliteralmd) - -#### Metadata - -> **Metadata**: *typeof* [`Metadata`](#classesmetadatamd) - -#### NONE - -> **NONE**: `string` - -#### Paragraph - -> **Paragraph**: *typeof* [`Paragraph`](#classesparagraphmd) - -#### SoftLineBreak - -> **SoftLineBreak**: *typeof* [`SoftLineBreak`](#classessoftlinebreakmd) - -#### Song - -> **Song**: *typeof* [`Song`](#classessongmd) - -#### TAB - -> **TAB**: `string` - -#### Tag - -> **Tag**: *typeof* [`Tag`](#classestagmd) - -#### Ternary - -> **Ternary**: *typeof* [`Ternary`](#classesternarymd) - -#### TextFormatter - -> **TextFormatter**: *typeof* [`TextFormatter`](#classestextformattermd) - -#### UltimateGuitarParser - -> **UltimateGuitarParser**: *typeof* [`UltimateGuitarParser`](#classesultimateguitarparsermd) - -#### VERSE - -> **VERSE**: `string` - -### Defined in - -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/index.ts#L75) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / templateHelpers - -## Variable: templateHelpers - -> **templateHelpers**: `object` - -### Type declaration - -#### each() - -> **each**: (`collection`, `callback`) => `string` - -##### Parameters - -• **collection**: `any`[] - -• **callback**: `EachCallback` - -##### Returns - -`string` - -#### evaluate() - -> **evaluate**: (`item`, `metadata`, `configuration`) => `string` - -##### Parameters - -• **item**: `Evaluatable` - -• **metadata**: [`Metadata`](#classesmetadatamd) - -• **configuration**: `Configuration` - -##### Returns - -`string` - -#### fontStyleTag() - -> **fontStyleTag**: (`font`) => `string` - -##### Parameters - -• **font**: `Font` - -##### Returns - -`string` - -#### hasChordContents() - -> **hasChordContents**: (`line`) => `boolean` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`boolean` - -#### hasTextContents() - -> **hasTextContents**: (`line`) => `boolean` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`boolean` - -#### isChordLyricsPair() - -> **isChordLyricsPair**: (`item`) => `boolean` - -##### Parameters - -• **item**: `Item` - -##### Returns - -`boolean` - -#### isComment() - -> **isComment**: (`item`) => `boolean` - -##### Parameters - -• **item**: [`Tag`](#classestagmd) - -##### Returns - -`boolean` - -#### isEvaluatable() - -> **isEvaluatable**: (`item`) => `boolean` - -##### Parameters - -• **item**: `Item` - -##### Returns - -`boolean` - -#### isTag() - -> **isTag**: (`item`) => `boolean` - -##### Parameters - -• **item**: `Item` - -##### Returns - -`boolean` - -#### lineClasses() - -> **lineClasses**: (`line`) => `string` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`string` - -#### lineHasContents() - -> **lineHasContents**: (`line`) => `boolean` - -##### Parameters - -• **line**: [`Line`](#classeslinemd) - -##### Returns - -`boolean` - -#### paragraphClasses() - -> **paragraphClasses**: (`paragraph`) => `string` - -##### Parameters - -• **paragraph**: [`Paragraph`](#classesparagraphmd) - -##### Returns - -`string` - -#### renderChord() - -> **renderChord**: (`chordString`, `line`, `song`, `__namedParameters`) => `string` - -##### Parameters - -• **chordString**: `string` - -• **line**: [`Line`](#classeslinemd) - -• **song**: [`Song`](#classessongmd) - -• **\_\_namedParameters**: `RenderChordOptions` = `{}` - -##### Returns - -`string` - -#### stripHTML() - -> **stripHTML**: (`string`) => `string` - -##### Parameters - -• **string**: `string` - -##### Returns - -`string` - -#### when() - -> **when**: (`condition`, `callback`?) => `When` - -##### Parameters - -• **condition**: `any` - -• **callback?**: `WhenCallback` - -##### Returns - -`When` - -### Defined in - -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/template_helpers.ts#L98) - -# Media - - - -## Contributing - -I love receiving pull requests from everyone! Please read this short document before you start, - -### ⚠️ Gotchas - -#### `README.md` - -Are you trying to make changes to `README.md`? Wait! `README.md` is a auto-generated file. - - to make changes in the first part, go to [INTRO.md](#_mediaintromd) - - the api docs are generated from JSdoc comment embedded in the code, so changing those - comments will result in API doc changes. - -When your changes are complete, be sure to run `yarn readme` to regenerate `README.md` and commit the updated `README.md` _together_ with the `INTRO.md` changes and/or API doc changes. - -### Pull request guidelines - -N.B. I do not expect you to have all required knowledge and experience to meet these guidelines; -I'm happy to help you out! ❤️ -However, the better your PR meets these guidelines the sooner it will get merged. - -- try to use a code style that is consistent with the existing code -- code changes go hand in hand with tests. -- if possible, write a test that proves the bug before writing/changing code to fix it -- if new code you contribute is expected to be public API (called directly by users instead of only used within ChordSheetJS), - you'd make me really happy by adding JSdoc comments. -- write a [good commit message][commit]. If your PR resolves an issue you can [link it to your commit][link_issue]. - -[commit]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html -[link_issue]: https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword -### Get started - -Ensure your have NodeJS and Yarn on your machine. The [CI workflow][ci_workflow] lists the NodeJS versions that -are expected to work. - -[ci_workflow]: https://github.com/martijnversluis/ChordSheetJS/blob/master/.github/workflows/ci.yml#L17 -Fork, then clone the repo: - - git clone git@github.com:your-username/ChordSheetJS.git - -ChordSheetJS uses Yarn 4. For that to work, Corepack need to be enabled: - - corepack enable - -⚠️ NB: In my experience this only guaranteed to work when using Node's Yarn. - Yarn installed by an external package manager (like Homebrew) will/might not work. - -Install the required node modules: - - yarn install - -Make sure the tests pass: - - yarn test - -Make your change. Add tests for your change. Make the tests pass: - - yarn test - -Push to your fork and [submit a pull request][pr]. - -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes[**chordsheetjs**](#readmemd) • **Docs***** - -[chordsheetjs](#globalsmd) / Chord - -## Class: Chord - -Represents a Chord, consisting of a root, suffix (quality) and bass - -### Implements - -- `ChordProperties` - -### Constructors - -#### new Chord() - -> **new Chord**(`__namedParameters`): [`Chord`](#classeschordmd) - -##### Parameters - -• **\_\_namedParameters** - -• **\_\_namedParameters.base?**: `null` \| `string` \| `number` = `null` - -• **\_\_namedParameters.bass?**: `null` \| [`Key`](#classeskeymd) = `null` - -• **\_\_namedParameters.bassBase?**: `null` \| `string` \| `number` = `null` - -• **\_\_namedParameters.bassModifier?**: `null` \| `Modifier` = `null` - -• **\_\_namedParameters.chordType?**: `null` \| `ChordType` = `null` - -• **\_\_namedParameters.modifier?**: `null` \| `Modifier` = `null` - -• **\_\_namedParameters.root?**: `null` \| [`Key`](#classeskeymd) = `null` - -• **\_\_namedParameters.suffix?**: `null` \| `string` = `null` - -##### Returns - -[`Chord`](#classeschordmd) - -##### Defined in - -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L344) - -### Properties - -#### bass - -> **bass**: `null` \| [`Key`](#classeskeymd) - -##### Implementation of - -`ChordProperties.bass` - -##### Defined in - -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L24) - -*** - -#### root - -> **root**: `null` \| [`Key`](#classeskeymd) - -##### Implementation of - -`ChordProperties.root` - -##### Defined in - -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L26) - -*** - -#### suffix - -> **suffix**: `null` \| `string` - -##### Implementation of - -`ChordProperties.suffix` - -##### Defined in - -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L28) - -### Methods - -#### clone() - -> **clone**(): [`Chord`](#classeschordmd) - -Returns a deep copy of the chord - -##### Returns - -[`Chord`](#classeschordmd) - -##### Defined in - -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L60) - -*** - -#### equals() - -> **equals**(`otherChord`): `boolean` - -##### Parameters - -• **otherChord**: [`Chord`](#classeschordmd) - -##### Returns - -`boolean` - -##### Defined in - -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L374) - -*** - -#### isChordSolfege() - -> **isChordSolfege**(): `boolean` - -Determines whether the chord is a chord solfege - -##### Returns - -`boolean` - -##### Defined in - -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L160) - -*** - -#### isChordSymbol() - -> **isChordSymbol**(): `boolean` - -Determines whether the chord is a chord symbol - -##### Returns - -`boolean` - -##### Defined in - -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L110) - -*** - -#### isMinor() - -> **isMinor**(): `boolean` - -##### Returns - -`boolean` - -##### Defined in - -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L432) - -*** - -#### isNumeral() - -> **isNumeral**(): `boolean` - -Determines whether the chord is a numeral - -##### Returns - -`boolean` - -##### Defined in - -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L246) - -*** - -#### isNumeric() - -> **isNumeric**(): `boolean` - -Determines whether the chord is numeric - -##### Returns - -`boolean` - -##### Defined in - -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L227) - -*** - -#### makeMinor() - -> **makeMinor**(): [`Chord`](#classeschordmd) - -##### Returns - -[`Chord`](#classeschordmd) - -##### Defined in - -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L436) - -*** - -#### normalize() - -> **normalize**(`key`?, `options`?): [`Chord`](#classeschordmd) - -Normalizes the chord root and bass notes: -- Fab becomes Mi -- Dob becomes Si -- Si# becomes Do -- Mi# becomes Fa -- Fb becomes E -- Cb becomes B -- B# becomes C -- E# becomes F -- 4b becomes 3 -- 1b becomes 7 -- 7# becomes 1 -- 3# becomes 4 - -Besides that it normalizes the suffix if `normalizeSuffix` is `true`. -For example, `sus2` becomes `2`, `sus4` becomes `sus`. -All suffix normalizations can be found in `src/normalize_mappings/suffix-mapping.txt`. - -When the chord is minor, bass notes are normalized off of the relative major -of the root note. For example, `Em/A#` becomes `Em/Bb`. - -##### Parameters - -• **key?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the key to normalize to - -• **options?** = `{}` - -options - -• **options.normalizeSuffix?**: `undefined` \| `boolean` = `true` - -whether to normalize the chord suffix after transposing - -##### Returns - -[`Chord`](#classeschordmd) - -the normalized chord - -##### Defined in - -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L294) - -*** - -#### set() - -> **set**(`properties`): [`Chord`](#classeschordmd) - -##### Parameters - -• **properties**: `ChordProperties` - -##### Returns - -[`Chord`](#classeschordmd) - -##### Defined in - -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L442) - -*** - -#### toChordSolfege() - -> **toChordSolfege**(`referenceKey`?): [`Chord`](#classeschordmd) - -Converts the chord to a chord solfege, using the supplied key as a reference. -For example, a numeric chord `#4` with reference key `Mi` will return the chord symbol `La#`. -When the chord is already a chord solfege, it will return a clone of the object. - -##### Parameters - -• **referenceKey?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the reference key. The key is required when converting a -numeric or numeral. - -##### Returns - -[`Chord`](#classeschordmd) - -the chord solfege - -##### Defined in - -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L122) - -*** - -#### toChordSolfegeString() - -> **toChordSolfegeString**(`referenceKey`?): `string` - -Converts the chord to a chord solfege string, using the supplied key as a reference. -For example, a numeric chord `#4` with reference key `E` will return the chord solfege `A#`. -When the chord is already a chord solfege, it will return a string version of the chord. - -##### Parameters - -• **referenceKey?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the reference key. The key is required when converting a -numeric or numeral. - -##### Returns - -`string` - -the chord solfege string - -##### See - -##### Defined in - -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L152) - -*** - -#### toChordSymbol() - -> **toChordSymbol**(`referenceKey`?): [`Chord`](#classeschordmd) - -Converts the chord to a chord symbol, using the supplied key as a reference. -For example, a numeric chord `#4` with reference key `E` will return the chord symbol `A#`. -When the chord is already a chord symbol, it will return a clone of the object. - -##### Parameters - -• **referenceKey?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the reference key. The key is required when converting a -numeric or numeral. - -##### Returns - -[`Chord`](#classeschordmd) - -the chord symbol - -##### Defined in - -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L72) - -*** - -#### toChordSymbolString() - -> **toChordSymbolString**(`referenceKey`?): `string` - -Converts the chord to a chord symbol string, using the supplied key as a reference. -For example, a numeric chord `#4` with reference key `E` will return the chord symbol `A#`. -When the chord is already a chord symbol, it will return a string version of the chord. - -##### Parameters - -• **referenceKey?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the reference key. The key is required when converting a -numeric or numeral. - -##### Returns - -`string` - -the chord symbol string - -##### See - -##### Defined in - -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L102) - -*** - -#### toNumeral() - -> **toNumeral**(`referenceKey`?): [`Chord`](#classeschordmd) - -Converts the chord to a numeral chord, using the supplied key as a reference. -For example, a chord symbol A# with reference key E will return the numeral chord #IV. - -##### Parameters - -• **referenceKey?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the reference key. The key is required when converting a chord symbol - -##### Returns - -[`Chord`](#classeschordmd) - -the numeral chord - -##### Defined in - -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L194) - -*** - -#### toNumeralString() - -> **toNumeralString**(`referenceKey`?): `string` - -Converts the chord to a numeral chord string, using the supplied kye as a reference. -For example, a chord symbol A# with reference key E will return the numeral chord #4. - -##### Parameters - -• **referenceKey?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the reference key. The key is required when converting a chord symbol - -##### Returns - -`string` - -the numeral chord string - -##### See - -##### Defined in - -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L219) - -*** - -#### toNumeric() - -> **toNumeric**(`referenceKey`?): [`Chord`](#classeschordmd) - -Converts the chord to a numeric chord, using the supplied key as a reference. -For example, a chord symbol A# with reference key E will return the numeric chord #4. - -##### Parameters - -• **referenceKey?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the reference key. The key is required when converting a chord symbol - -##### Returns - -[`Chord`](#classeschordmd) - -the numeric chord - -##### Defined in - -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L170) - -*** - -#### toNumericString() - -> **toNumericString**(`referenceKey`?): `string` - -Converts the chord to a numeric chord string, using the supplied kye as a reference. -For example, a chord symbol A# with reference key E will return the numeric chord #4. - -##### Parameters - -• **referenceKey?**: `null` \| `string` \| [`Key`](#classeskeymd) = `null` - -the reference key. The key is required when converting a chord symbol - -##### Returns - -`string` - -the numeric chord string - -##### See - -##### Defined in - -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L238) - -*** - -#### toString() - -> **toString**(`configuration`?): `string` - -Converts the chord to a string, eg `Esus4/G#` or `1sus4/#3` - -##### Parameters - -• **configuration?** = `{}` - -options - -• **configuration.useUnicodeModifier?**: `undefined` \| `boolean` = `false` - -Whether or not to use unicode modifiers. -This will make `#` (sharp) look like `♯` and `b` (flat) look like `♭` - -##### Returns - -`string` - -the chord string - -##### Defined in - -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L257) - -*** - -#### transpose() - -> **transpose**(`delta`): [`Chord`](#classeschordmd) - -Transposes the chord by the specified number of semitones - -##### Parameters - -• **delta**: `number` - -de number of semitones - -##### Returns - -[`Chord`](#classeschordmd) - -the new, transposed chord - -##### Defined in - -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L340) - -*** - -#### transposeDown() - -> **transposeDown**(): [`Chord`](#classeschordmd) - -Transposes the chord down by 1 semitone. Eg. A# becomes A, E becomes Eb - -##### Returns - -[`Chord`](#classeschordmd) - -the new, transposed chord - -##### Defined in - -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L331) - -*** - -#### transposeUp() - -> **transposeUp**(): [`Chord`](#classeschordmd) - -Transposes the chord up by 1 semitone. Eg. A becomes A#, Eb becomes E - -##### Returns - -[`Chord`](#classeschordmd) - -the new, transposed chord - -##### Defined in - -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L323) - -*** - -#### useModifier() - -> **useModifier**(`newModifier`): [`Chord`](#classeschordmd) - -Switches to the specified modifier - -##### Parameters - -• **newModifier**: `Modifier` - -the modifier to use: `'#'` or `'b'` - -##### Returns - -[`Chord`](#classeschordmd) - -the new, changed chord - -##### Defined in - -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L315) - -*** - -#### determineBass() - -> `static` **determineBass**(`__namedParameters`): `null` \| [`Key`](#classeskeymd) - -##### Parameters - -• **\_\_namedParameters** - -• **\_\_namedParameters.bass**: `null` \| [`Key`](#classeskeymd) - -• **\_\_namedParameters.bassBase**: `null` \| `string` \| `number` - -• **\_\_namedParameters.bassModifier**: `null` \| `Modifier` - -• **\_\_namedParameters.chordType**: `null` \| `ChordType` - -##### Returns - -`null` \| [`Key`](#classeskeymd) - -##### Defined in - -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L407) - -*** - -#### determineRoot() - -> `static` **determineRoot**(`__namedParameters`): `null` \| [`Key`](#classeskeymd) - -##### Parameters - -• **\_\_namedParameters** - -• **\_\_namedParameters.base**: `null` \| `string` \| `number` - -• **\_\_namedParameters.chordType**: `null` \| `ChordType` - -• **\_\_namedParameters.modifier**: `null` \| `Modifier` - -• **\_\_namedParameters.root**: `null` \| [`Key`](#classeskeymd) - -• **\_\_namedParameters.suffix**: `null` \| `string` - -##### Returns - -`null` \| [`Key`](#classeskeymd) - -##### Defined in - -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L380) - -*** - -#### parse() - -> `static` **parse**(`chordString`): `null` \| [`Chord`](#classeschordmd) - -Tries to parse a chord string into a chord -Any leading or trailing whitespace is removed first, so a chord like ` \n E/G# \r ` is valid. - -##### Parameters - -• **chordString**: `string` - -the chord string, eg `Esus4/G#` or `1sus4/#3`. - -##### Returns - -`null` \| [`Chord`](#classeschordmd) - -##### Defined in - -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L36) - -*** - -#### parseOrFail() - -> `static` **parseOrFail**(`chordString`): [`Chord`](#classeschordmd) - -##### Parameters - -• **chordString**: `string` - -##### Returns - -[`Chord`](#classeschordmd) - -##### Defined in - -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L44) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ChordDefinition - -## Class: ChordDefinition - -Represents a chord definition. - -Definitions are made using the `{chord}` or `{define}` directive. -A chord definitions overrides a previous chord definition for the exact same chord. - -### See - - - https://chordpro.org/chordpro/directives-define/ - - https://chordpro.org/chordpro/directives-chord/ - -### Constructors - -#### new ChordDefinition() - -> **new ChordDefinition**(`name`, `baseFret`, `frets`, `fingers`?): [`ChordDefinition`](#classeschorddefinitionmd) - -##### Parameters - -• **name**: `string` - -• **baseFret**: `number` - -• **frets**: `Fret`[] - -• **fingers?**: `number`[] - -##### Returns - -[`ChordDefinition`](#classeschorddefinitionmd) - -##### Defined in - -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L47) - -### Properties - -#### baseFret - -> **baseFret**: `number` - -Defines the offset for the chord, which is the position of the topmost finger. -The offset must be 1 or higher. - -##### Defined in - -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L24) - -*** - -#### fingers - -> **fingers**: `number`[] - -defines finger settings. This part may be omitted. - -For the frets and the fingers positions, there must be exactly as many positions as there are strings, -which is 6 by default. For the fingers positions, values corresponding to open or damped strings are ignored. -Finger settings may be numeric (0 .. 9) or uppercase letters (A .. Z). -Note that the values -, x, X, and N are used to designate a string without finger setting. - -##### Defined in - -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L45) - -*** - -#### frets - -> **frets**: `Fret`[] - -Defines the string positions. -Strings are enumerated from left (lowest) to right (highest), as they appear in the chord diagrams. -Fret positions are relative to the offset minus one, so with base-fret 1 (the default), -the topmost fret position is 1. With base-fret 3, fret position 1 indicates the 3rd position. -`0` (zero) denotes an open string. Use `-1`, `N` or `x` to denote a non-sounding string. - -##### Defined in - -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L34) - -*** - -#### name - -> **name**: `string` - -The chord name, e.g. `C`, `Dm`, `G7`. - -##### Defined in - -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L17) - -### Methods - -#### clone() - -> **clone**(): [`ChordDefinition`](#classeschorddefinitionmd) - -##### Returns - -[`ChordDefinition`](#classeschorddefinitionmd) - -##### Defined in - -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L54) - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** - -[chordsheetjs](#globalsmd) / ChordLyricsPair - -## Class: ChordLyricsPair - -Represents a chord with the corresponding (partial) lyrics - -### Constructors - -#### new ChordLyricsPair() - -> **new ChordLyricsPair**(`chords`, `lyrics`, `annotation`): [`ChordLyricsPair`](#classeschordlyricspairmd) - -Initialises a ChordLyricsPair - -##### Parameters - -• **chords**: `string` = `''` - -The chords - -• **lyrics**: `null` \| `string` = `null` - -The lyrics - -• **annotation**: `null` \| `string` = `null` - -The annotation - -##### Returns - -[`ChordLyricsPair`](#classeschordlyricspairmd) - -##### Defined in - -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -43063,7 +33616,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -43073,7 +33626,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -43083,7 +33636,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -43101,7 +33654,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -43117,7 +33670,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -43133,7 +33686,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -43157,7 +33710,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -43175,7 +33728,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -43193,7 +33746,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -43207,7 +33760,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -43231,7 +33784,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -43249,7 +33802,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -43291,7 +33844,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) ### Properties @@ -43305,7 +33858,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) ### Methods @@ -43329,7 +33882,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L24) *** @@ -43347,7 +33900,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L132) *** @@ -43365,7 +33918,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L139) *** @@ -43383,7 +33936,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L158) *** @@ -43401,7 +33954,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L162) *** @@ -43419,7 +33972,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L112) *** @@ -43437,7 +33990,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L104) *** @@ -43457,7 +34010,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L38) *** @@ -43477,7 +34030,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L32) *** @@ -43497,7 +34050,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L62) *** @@ -43515,7 +34068,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L124) *** @@ -43533,7 +34086,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L78) *** @@ -43551,7 +34104,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chord_pro_formatter.ts#L96) @@ -43583,7 +34136,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -43603,7 +34156,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -43635,7 +34188,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_pro_parser.ts#L36) @@ -43684,7 +34237,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -43694,7 +34247,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L31) *** @@ -43704,7 +34257,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L35) *** @@ -43714,7 +34267,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L37) *** @@ -43724,7 +34277,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L33) *** @@ -43734,7 +34287,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L23) *** @@ -43744,7 +34297,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L21) *** @@ -43754,7 +34307,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L25) *** @@ -43764,7 +34317,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L27) *** @@ -43774,7 +34327,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -43794,7 +34347,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L160) *** @@ -43808,7 +34361,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L82) *** @@ -43822,7 +34375,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L177) *** @@ -43836,7 +34389,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L124) *** @@ -43856,7 +34409,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L107) *** @@ -43888,7 +34441,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L70) *** @@ -43906,7 +34459,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L84) *** @@ -43926,7 +34479,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L128) *** @@ -43944,7 +34497,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L94) *** @@ -43964,7 +34517,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L146) *** @@ -43978,7 +34531,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L118) *** @@ -43996,7 +34549,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L173) @@ -44028,7 +34581,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L40) *** @@ -44038,7 +34591,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L42) ### Methods @@ -44062,7 +34615,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L151) *** @@ -44080,7 +34633,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L156) *** @@ -44098,7 +34651,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L201) *** @@ -44116,7 +34669,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L184) *** @@ -44134,7 +34687,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L234) *** @@ -44152,7 +34705,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L259) *** @@ -44170,7 +34723,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L191) *** @@ -44188,7 +34741,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L213) *** @@ -44206,7 +34759,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L239) *** @@ -44229,7 +34782,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L49) *** @@ -44247,7 +34800,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L91) *** @@ -44285,7 +34838,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L114) *** @@ -44303,7 +34856,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L142) *** @@ -44321,7 +34874,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L138) *** @@ -44339,7 +34892,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L63) *** @@ -44357,7 +34910,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L56) *** @@ -44375,7 +34928,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L134) *** @@ -44393,7 +34946,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L100) *** @@ -44411,7 +34964,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet_serializer.ts#L124) @@ -44453,7 +35006,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) ### Properties @@ -44467,7 +35020,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) *** @@ -44477,7 +35030,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -44497,7 +35050,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -44521,7 +35074,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -44535,7 +35088,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -44557,7 +35110,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -44579,7 +35132,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -44599,7 +35152,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -44619,7 +35172,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -44639,7 +35192,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -44661,7 +35214,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -44681,7 +35234,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -44695,7 +35248,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -44715,7 +35268,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/chords_over_words_formatter.ts#L114) @@ -44782,7 +35335,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -44802,7 +35355,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -44834,7 +35387,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chords_over_words_parser.ts#L71) @@ -44864,7 +35417,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L7) ### Properties @@ -44874,7 +35427,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L5) ### Methods @@ -44890,7 +35443,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L23) *** @@ -44906,7 +35459,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L15) *** @@ -44920,7 +35473,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/comment.ts#L27) @@ -44958,7 +35511,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -44972,7 +35525,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L6) *** @@ -44982,7 +35535,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -44996,7 +35549,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L4) *** @@ -45010,7 +35563,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L8) *** @@ -45020,7 +35573,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -45038,7 +35591,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -45062,7 +35615,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -45076,7 +35629,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/composite.ts#L21) @@ -45117,7 +35670,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) ### Properties @@ -45127,7 +35680,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) @@ -45169,7 +35722,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) ### Properties @@ -45183,7 +35736,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) ### Accessors @@ -45214,7 +35767,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L66) *** @@ -45234,7 +35787,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_div_formatter.ts#L44) *** @@ -45254,7 +35807,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -45288,7 +35841,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L50) *** @@ -45316,7 +35869,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L26) @@ -45363,7 +35916,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) ### Properties @@ -45377,7 +35930,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) ### Accessors @@ -45404,7 +35957,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L66) *** @@ -45420,7 +35973,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L70) *** @@ -45436,7 +35989,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L72) ### Methods @@ -45466,7 +36019,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L50) *** @@ -45490,7 +36043,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L26) @@ -45533,7 +36086,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) ### Properties @@ -45547,7 +36100,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) ### Accessors @@ -45578,7 +36131,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L66) *** @@ -45598,7 +36151,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_table_formatter.ts#L45) *** @@ -45618,7 +36171,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -45652,7 +36205,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L50) *** @@ -45680,7 +36233,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/html_formatter.ts#L26) @@ -45732,7 +36285,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L249) ### Properties @@ -45746,7 +36299,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L51) *** @@ -45760,7 +36313,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L70) *** @@ -45774,7 +36327,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L55) *** @@ -45788,7 +36341,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L53) *** @@ -45798,7 +36351,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L74) *** @@ -45812,7 +36365,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L76) *** @@ -45826,7 +36379,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L72) *** @@ -45840,7 +36393,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L57) ### Accessors @@ -45856,7 +36409,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L285) *** @@ -45872,7 +36425,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L519) *** @@ -45888,7 +36441,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L490) *** @@ -45904,7 +36457,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L301) *** @@ -45920,7 +36473,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L305) *** @@ -45936,7 +36489,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L59) ### Methods @@ -45950,7 +36503,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L595) *** @@ -45964,7 +36517,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L603) *** @@ -45982,7 +36535,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L558) *** @@ -45996,7 +36549,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L317) *** @@ -46014,7 +36567,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L280) *** @@ -46032,7 +36585,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L410) *** @@ -46050,7 +36603,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L390) *** @@ -46064,7 +36617,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L402) *** @@ -46078,7 +36631,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L398) *** @@ -46092,7 +36645,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L293) *** @@ -46106,7 +36659,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L406) *** @@ -46120,7 +36673,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L394) *** @@ -46134,7 +36687,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L297) *** @@ -46148,7 +36701,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L630) *** @@ -46166,7 +36719,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L644) *** @@ -46184,7 +36737,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L611) *** @@ -46202,7 +36755,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L362) *** @@ -46220,7 +36773,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L386) *** @@ -46238,7 +36791,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L342) *** @@ -46256,7 +36809,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L382) *** @@ -46270,7 +36823,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L309) *** @@ -46288,7 +36841,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L456) *** @@ -46306,7 +36859,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L476) *** @@ -46324,7 +36877,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L431) *** @@ -46342,7 +36895,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L452) *** @@ -46366,7 +36919,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L480) *** @@ -46384,7 +36937,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L544) *** @@ -46398,7 +36951,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L582) *** @@ -46412,7 +36965,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L568) *** @@ -46430,7 +36983,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L625) *** @@ -46458,7 +37011,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L245) *** @@ -46478,7 +37031,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L419) *** @@ -46498,7 +37051,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L152) *** @@ -46520,7 +37073,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L193) *** @@ -46542,7 +37095,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L161) *** @@ -46560,7 +37113,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L78) *** @@ -46580,7 +37133,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L93) *** @@ -46598,7 +37151,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L209) *** @@ -46624,7 +37177,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L108) *** @@ -46642,7 +37195,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L617) *** @@ -46666,7 +37219,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L176) *** @@ -46684,7 +37237,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L235) *** @@ -46702,7 +37255,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L217) *** @@ -46720,7 +37273,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/key.ts#L225) @@ -46754,7 +37307,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L62) ### Properties @@ -46768,7 +37321,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L60) *** @@ -46778,7 +37331,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L38) *** @@ -46790,7 +37343,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L29) *** @@ -46800,7 +37353,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L40) *** @@ -46810,7 +37363,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L44) *** @@ -46824,7 +37377,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L52) *** @@ -46834,7 +37387,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L42) *** @@ -46847,7 +37400,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L36) ### Accessors @@ -46863,7 +37416,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L223) ### Methods @@ -46883,7 +37436,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L174) *** @@ -46901,7 +37454,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L207) *** @@ -46923,7 +37476,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L83) *** @@ -46943,7 +37496,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L201) *** @@ -46961,7 +37514,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L191) *** @@ -46977,7 +37530,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L107) *** @@ -46991,7 +37544,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L185) *** @@ -47009,7 +37562,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L170) *** @@ -47025,7 +37578,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L99) *** @@ -47041,7 +37594,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L129) *** @@ -47057,7 +37610,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L137) *** @@ -47073,7 +37626,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L71) *** @@ -47089,7 +37642,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L145) *** @@ -47103,7 +37656,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L75) *** @@ -47117,7 +37670,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L241) *** @@ -47131,7 +37684,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L237) *** @@ -47147,7 +37700,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L153) *** @@ -47163,7 +37716,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L161) *** @@ -47181,7 +37734,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L196) *** @@ -47199,7 +37752,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L111) *** @@ -47221,7 +37774,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/line.ts#L213) @@ -47257,7 +37810,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -47271,7 +37824,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L6) *** @@ -47285,7 +37838,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L4) *** @@ -47299,7 +37852,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L8) *** @@ -47309,7 +37862,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -47327,7 +37880,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -47345,7 +37898,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -47359,7 +37912,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/literal.ts#L15) @@ -47402,7 +37955,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L28) ### Properties @@ -47412,7 +37965,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -47432,7 +37985,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -47452,7 +38005,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -47472,7 +38025,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -47492,7 +38045,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -47512,7 +38065,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -47532,7 +38085,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -47552,7 +38105,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -47572,7 +38125,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -47592,7 +38145,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -47612,7 +38165,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -47632,7 +38185,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -47652,7 +38205,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -47672,7 +38225,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -47692,7 +38245,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L46) *** @@ -47706,7 +38259,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L178) *** @@ -47724,7 +38277,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L174) *** @@ -47742,7 +38295,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L42) *** @@ -47783,7 +38336,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L109) *** @@ -47801,7 +38354,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L150) *** @@ -47823,7 +38376,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L78) *** @@ -47845,7 +38398,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L82) *** @@ -47863,7 +38416,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L36) *** @@ -47881,7 +38434,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L138) *** @@ -47901,7 +38454,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata.ts#L70) @@ -47937,7 +38490,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -47955,7 +38508,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L52) *** @@ -47974,7 +38527,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L68) *** @@ -47993,7 +38546,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -48011,7 +38564,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L18) *** @@ -48031,7 +38584,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L103) *** @@ -48045,7 +38598,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L107) *** @@ -48066,7 +38619,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/paragraph.ts#L28) @@ -48100,7 +38653,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/soft_line_break.ts#L2) @@ -48142,7 +38695,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L54) ### Properties @@ -48152,7 +38705,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L44) *** @@ -48162,7 +38715,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L46) *** @@ -48176,7 +38729,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L35) *** @@ -48189,7 +38742,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L42) *** @@ -48199,7 +38752,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L48) ### Accessors @@ -48219,7 +38772,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -48239,7 +38792,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -48260,7 +38813,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L64) *** @@ -48283,7 +38836,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L78) *** @@ -48303,7 +38856,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -48323,7 +38876,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -48343,7 +38896,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -48363,7 +38916,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -48381,7 +38934,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L156) *** @@ -48401,7 +38954,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -48421,7 +38974,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -48441,7 +38994,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L148) *** @@ -48461,7 +39014,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -48481,7 +39034,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -48501,7 +39054,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -48521,7 +39074,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -48541,7 +39094,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -48559,7 +39112,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L380) *** @@ -48586,7 +39139,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L304) *** @@ -48615,7 +39168,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L357) *** @@ -48633,7 +39186,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L186) *** @@ -48651,7 +39204,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L417) *** @@ -48676,7 +39229,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L453) *** @@ -48694,7 +39247,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L427) *** @@ -48716,7 +39269,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L194) *** @@ -48738,7 +39291,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L198) *** @@ -48756,7 +39309,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L164) *** @@ -48793,7 +39346,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L398) *** @@ -48830,7 +39383,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L485) *** @@ -48844,7 +39397,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L332) *** @@ -48862,7 +39415,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L86) *** @@ -48890,7 +39443,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L225) *** @@ -48918,7 +39471,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L211) *** @@ -48938,7 +39491,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L190) *** @@ -48973,7 +39526,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L252) *** @@ -49004,7 +39557,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L292) *** @@ -49035,7 +39588,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L279) *** @@ -49059,7 +39612,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/song.ts#L322) @@ -49101,7 +39654,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L412) ### Properties @@ -49111,7 +39664,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L402) *** @@ -49121,7 +39674,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L406) *** @@ -49131,7 +39684,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L404) *** @@ -49141,7 +39694,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L408) *** @@ -49151,7 +39704,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L410) *** @@ -49165,7 +39718,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L6) *** @@ -49179,7 +39732,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L4) *** @@ -49193,7 +39746,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -49225,7 +39778,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L491) *** @@ -49245,7 +39798,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L500) *** @@ -49277,7 +39830,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L513) ### Methods @@ -49299,7 +39852,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L555) *** @@ -49318,7 +39871,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L539) *** @@ -49334,7 +39887,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L521) *** @@ -49348,7 +39901,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L477) *** @@ -49364,7 +39917,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L547) *** @@ -49380,7 +39933,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L529) *** @@ -49394,7 +39947,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L465) *** @@ -49408,7 +39961,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L473) *** @@ -49422,7 +39975,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L469) *** @@ -49442,7 +39995,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L563) *** @@ -49458,7 +40011,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L559) *** @@ -49476,7 +40029,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L437) *** @@ -49494,7 +40047,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L455) *** @@ -49514,7 +40067,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/tag.ts#L445) @@ -49550,7 +40103,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -49564,7 +40117,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L6) *** @@ -49574,7 +40127,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -49588,7 +40141,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L4) *** @@ -49602,7 +40155,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/ast_component.ts#L8) *** @@ -49612,7 +40165,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -49622,7 +40175,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -49632,7 +40185,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -49650,7 +40203,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -49684,7 +40237,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -49706,7 +40259,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -49726,7 +40279,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -49746,7 +40299,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -49760,7 +40313,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -49802,7 +40355,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L26) ### Properties @@ -49816,7 +40369,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/formatter.ts#L7) *** @@ -49826,7 +40379,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L17) ### Methods @@ -49846,7 +40399,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L102) *** @@ -49870,7 +40423,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L24) *** @@ -49884,7 +40437,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L33) *** @@ -49906,7 +40459,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L161) *** @@ -49928,7 +40481,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L129) *** @@ -49948,7 +40501,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L66) *** @@ -49968,7 +40521,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L142) *** @@ -49988,7 +40541,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L94) *** @@ -50010,7 +40563,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L150) *** @@ -50030,7 +40583,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L53) *** @@ -50044,7 +40597,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L44) *** @@ -50062,7 +40615,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L86) *** @@ -50080,7 +40633,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/formatter/text_formatter.ts#L78) @@ -50127,7 +40680,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -50141,7 +40694,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L31) *** @@ -50155,7 +40708,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L35) *** @@ -50165,7 +40718,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -50179,7 +40732,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L37) *** @@ -50193,7 +40746,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L33) *** @@ -50207,7 +40760,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L23) *** @@ -50221,7 +40774,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L21) *** @@ -50235,7 +40788,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L25) *** @@ -50249,7 +40802,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L27) *** @@ -50263,7 +40816,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -50287,7 +40840,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L160) *** @@ -50305,7 +40858,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -50325,7 +40878,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -50343,7 +40896,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L177) *** @@ -50361,7 +40914,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L124) *** @@ -50385,7 +40938,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L107) *** @@ -50399,7 +40952,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -50435,7 +40988,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L70) *** @@ -50457,7 +41010,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -50481,7 +41034,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L128) *** @@ -50503,7 +41056,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L94) *** @@ -50527,7 +41080,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L146) *** @@ -50545,7 +41098,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L118) *** @@ -50567,7 +41120,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/chord_sheet_parser.ts#L173) *** @@ -50581,7 +41134,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -50601,7 +41154,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/parser/ultimate_guitar_parser.ts#L87) @@ -50676,7 +41229,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L62) @@ -50696,7 +41249,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L13) @@ -50716,7 +41269,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L27) @@ -50736,7 +41289,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L55) @@ -50756,7 +41309,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L34) @@ -50772,7 +41325,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L77) @@ -50788,7 +41341,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L76) @@ -50804,7 +41357,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L78) @@ -50820,7 +41373,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L75) @@ -50840,7 +41393,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L41) @@ -50860,7 +41413,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/constants.ts#L48) @@ -50990,7 +41543,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/index.ts#L75) @@ -51202,7 +41755,7 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/9f253175713caec7da72f86d7b0f5039f75675e7/src/template_helpers.ts#L98) # Media @@ -51269,376 +41822,7 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/## ChordSheetJS [![Code Climate] (https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) - -A JavaScript library for parsing and formatting chord sheets - -**Contents** - -- [Installation](#installation) -- [How to ...?](#how-to-) -- [Supported ChordPro directives](#supported-chordpro-directives) -- [API docs](#api-docs) -- [Contributing](#_mediacontributingmd) - -### Installation - -#### Package managers - -`ChordSheetJS` is on npm, to install run: - -```bash -npm install chordsheetjs -``` - -Load with `import`: - -```javascript -import ChordSheetJS from 'chordsheetjs'; -``` - -or `require()`: - -```javascript -var ChordSheetJS = require('chordsheetjs').default; -``` - -#### Standalone bundle file - -If you're not using a build tool, you can download and use the `bundle.js` from the -[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): - -```html - - -``` - -### How to ...? - -#### Parse chord sheet - -##### Regular chord sheets - -```javascript -const chordSheet = ` - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.ChordsOverWordsParser(); -const song = parser.parse(chordSheet); -``` - -##### Ultimate Guitar chord sheets - -```javascript -const chordSheet = ` -[Chorus] - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.UltimateGuitarParser(); -const song = parser.parse(chordSheet); -``` - -##### Chord pro format - -```javascript -const chordSheet = ` -{title: Let it be} -{subtitle: ChordSheetJS example version} - -{start_of_chorus: Chorus} -Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be -[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] -{end_of_chorus}`.substring(1); - -const parser = new ChordSheetJS.ChordProParser(); -const song = parser.parse(chordSheet); -``` - -#### Display a parsed sheet - -##### Plain text format - -```javascript -const formatter = new ChordSheetJS.TextFormatter(); -const disp = formatter.format(song); -``` - -##### HTML format - -###### Table-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlTableFormatter(); -const disp = formatter.format(song); -``` - -###### Div-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlDivFormatter(); -const disp = formatter.format(song); -``` - -##### Chord pro format - -```javascript -const formatter = new ChordSheetJS.ChordProFormatter(); -const disp = formatter.format(song); -``` - -#### Serialize/deserialize - -Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by -third-party libraries. The serialized object can also be deserialized back into a `Song`. - -```javascript -const serializedSong = new ChordSheetSerializer().serialize(song); -const deserialized = new ChordSheetSerializer().deserialize(serializedSong); -``` - -#### Add styling - -The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: - -```javascript -HtmlTableFormatter.cssString(); -// .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssString('.chordSheetViewer'); -// .chordSheetViewer .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssObject(); -// '.paragraph': { -// marginBottom: '1em' -// } -``` - -#### Parsing and modifying chords - -```javascript -import { Chord } from 'chordsheetjs'; -``` - -##### Parse - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -``` - -Parse numeric chords (Nashville system): - -```javascript -const chord = Chord.parse('b1sus4/#3'); -``` - -##### Display with #toString - -Use #toString() to convert the chord to a chord string (eg Dsus/F#) - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -chord.toString(); // --> "Ebsus4/Bb" -``` - -##### Clone - -```javascript -var chord2 = chord.clone(); -``` - -##### Normalize - -Normalizes keys B#, E#, Cb and Fb to C, F, B and E - -```javascript -const chord = Chord.parse('E#/B#'); -normalizedChord = chord.normalize(); -normalizedChord.toString(); // --> "F/C" -``` - -##### ~~Switch modifier~~ - -***Deprecated*** - -Convert # to b and vice versa - -```javascript -const chord = parseChord('Eb/Bb'); -const chord2 = chord.switchModifier(); -chord2.toString(); // --> "D#/A#" -``` - -##### Use specific modifier - -Set the chord to a specific modifier (# or b) - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('#'); -chord2.toString(); // --> "D#/A#" -``` - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('b'); -chord2.toString(); // --> "Eb/Bb" -``` - -##### Transpose up - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeUp(); -chord2.toString(); // -> "E/B" -``` - -##### Transpose down - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeDown(); -chord2.toString(); // -> "D/A" -``` - -##### Transpose - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(4); -chord2.toString(); // -> "E/G#" -``` - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(-4); -chord2.toString(); // -> "Ab/C" -``` - -##### Convert numeric chord to chord symbol - -```javascript -const numericChord = Chord.parse('2/4'); -const chordSymbol = numericChord.toChordSymbol('E'); -chordSymbol.toString(); // -> "F#/A" -``` - -### Supported ChordPro directives - -All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually -use those to change the generated output. - -:heavy_check_mark: = supported - -:clock2: = will be supported in a future version - -:heavy_multiplication_x: = currently no plans to support it in the near future - -#### Meta-data directives - -| Directive | Support | -|:---------------- |:------------------:| -| title (short: t) | :heavy_check_mark: | -| subtitle | :heavy_check_mark: | -| artist | :heavy_check_mark: | -| composer | :heavy_check_mark: | -| lyricist | :heavy_check_mark: | -| copyright | :heavy_check_mark: | -| album | :heavy_check_mark: | -| year | :heavy_check_mark: | -| key | :heavy_check_mark: | -| time | :heavy_check_mark: | -| tempo | :heavy_check_mark: | -| duration | :heavy_check_mark: | -| capo | :heavy_check_mark: | -| meta | :heavy_check_mark: | - -#### Formatting directives - -| Directive | Support | -|:-------------------------- |:------------------------:| -| comment (short: c) | :heavy_check_mark: | -| comment_italic (short: ci) | :heavy_multiplication_x: | -| comment_box (short: cb) | :heavy_multiplication_x: | -| chorus | :heavy_multiplication_x: | -| image | :heavy_multiplication_x: | - -#### Environment directives - -| Directive | Support | -|:---------------------------- |:------------------:| -| start_of_chorus (short: soc) | :heavy_check_mark: | -| end_of_chorus (short: eoc) | :heavy_check_mark: | -| start_of_verse | :heavy_check_mark: | -| end_of_verse | :heavy_check_mark: | -| start_of_tab (short: sot) | :heavy_check_mark: | -| end_of_tab (short: eot) | :heavy_check_mark: | -| start_of_grid | :heavy_check_mark: | -| end_of_grid | :heavy_check_mark: | - -#### Chord diagrams - -| Directive | Support | -|:--------- |:------------------:| -| define | :heavy_check_mark: | -| chord | :heavy_check_mark: | - -#### Fonts, sizes and colours - -| Directive | Support | -|:----------- |:------------------------:| -| textfont | :heavy_check_mark: | -| textsize | :heavy_check_mark: | -| textcolour | :heavy_check_mark: | -| chordfont | :heavy_check_mark: | -| chordsize | :heavy_check_mark: | -| chordcolour | :heavy_check_mark: | -| tabfont | :heavy_multiplication_x: | -| tabsize | :heavy_multiplication_x: | -| tabcolour | :heavy_multiplication_x: | - -#### Output related directives - -| Directive | Support | -|:------------------------------ |:------------------------:| -| new_page (short: np) | :heavy_multiplication_x: | -| new_physical_page (short: npp) | :heavy_multiplication_x: | -| column_break (short: cb) | :heavy_multiplication_x: | -| grid (short: g) | :heavy_multiplication_x: | -| no_grid (short: ng) | :heavy_multiplication_x: | -| titles | :heavy_multiplication_x: | -| columns (short: col) | :heavy_multiplication_x: | - -#### Custom extensions - -| Directive | Support | -|:--------- |:------------------:| -| x_ | :heavy_check_mark: | - -### API docs - -Note: all classes, methods and constants that are documented here can be considered public API and will only be -subject to breaking changes between major versions. - -# Classes - - - -[**chordsheetjs**](#readmemd) • **Docs** - -*** +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes[**chordsheetjs**](#readmemd) • **Docs***** [chordsheetjs](#globalsmd) / Chord @@ -51682,7 +41866,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L344) +[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L344) ### Properties @@ -51696,7 +41880,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L24) +[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L24) *** @@ -51710,7 +41894,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L26) +[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L26) *** @@ -51724,7 +41908,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L28) +[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L28) ### Methods @@ -51740,7 +41924,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L60) +[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L60) *** @@ -51758,7 +41942,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L374) +[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L374) *** @@ -51774,7 +41958,7 @@ Determines whether the chord is a chord solfege ##### Defined in -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L160) +[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L160) *** @@ -51790,7 +41974,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L110) +[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L110) *** @@ -51804,7 +41988,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L432) +[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L432) *** @@ -51820,7 +42004,7 @@ Determines whether the chord is a numeral ##### Defined in -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L246) +[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L246) *** @@ -51836,7 +42020,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L227) +[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L227) *** @@ -51850,7 +42034,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L436) +[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L436) *** @@ -51901,7 +42085,7 @@ the normalized chord ##### Defined in -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L294) +[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L294) *** @@ -51919,7 +42103,7 @@ the normalized chord ##### Defined in -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L442) +[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L442) *** @@ -51946,7 +42130,7 @@ the chord solfege ##### Defined in -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L122) +[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L122) *** @@ -51975,7 +42159,7 @@ the chord solfege string ##### Defined in -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L152) +[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L152) *** @@ -52002,7 +42186,7 @@ the chord symbol ##### Defined in -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L72) +[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L72) *** @@ -52031,7 +42215,7 @@ the chord symbol string ##### Defined in -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L102) +[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L102) *** @@ -52056,7 +42240,7 @@ the numeral chord ##### Defined in -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L194) +[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L194) *** @@ -52083,7 +42267,7 @@ the numeral chord string ##### Defined in -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L219) +[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L219) *** @@ -52108,7 +42292,7 @@ the numeric chord ##### Defined in -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L170) +[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L170) *** @@ -52135,7 +42319,7 @@ the numeric chord string ##### Defined in -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L238) +[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L238) *** @@ -52164,7 +42348,7 @@ the chord string ##### Defined in -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L257) +[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L257) *** @@ -52188,7 +42372,7 @@ the new, transposed chord ##### Defined in -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L340) +[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L340) *** @@ -52206,7 +42390,7 @@ the new, transposed chord ##### Defined in -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L331) +[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L331) *** @@ -52224,7 +42408,7 @@ the new, transposed chord ##### Defined in -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L323) +[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L323) *** @@ -52248,7 +42432,7 @@ the new, changed chord ##### Defined in -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L315) +[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L315) *** @@ -52274,7 +42458,7 @@ the new, changed chord ##### Defined in -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L407) +[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L407) *** @@ -52302,7 +42486,7 @@ the new, changed chord ##### Defined in -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L380) +[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L380) *** @@ -52325,7 +42509,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L36) +[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L36) *** @@ -52343,7 +42527,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L44) +[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord.ts#L44) @@ -52387,7 +42571,7 @@ A chord definitions overrides a previous chord definition for the exact same cho ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L47) +[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L47) ### Properties @@ -52400,7 +42584,7 @@ The offset must be 1 or higher. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L24) +[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L24) *** @@ -52417,7 +42601,7 @@ Note that the values -, x, X, and N are used to designate a string without finge ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L45) +[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L45) *** @@ -52433,7 +42617,7 @@ the topmost fret position is 1. With base-fret 3, fret position 1 indicates the ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L34) +[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L34) *** @@ -52445,7 +42629,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L17) +[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L17) ### Methods @@ -52459,7 +42643,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L54) +[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/chord_definition.ts#L54) @@ -52501,7 +42685,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -52511,7 +42695,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -52521,7 +42705,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -52531,7 +42715,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -52549,7 +42733,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -52565,7 +42749,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -52581,7 +42765,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -52605,7 +42789,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -52623,7 +42807,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -52641,7 +42825,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -52655,7 +42839,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -52679,7 +42863,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -52697,7 +42881,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -52739,7 +42923,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) ### Properties @@ -52753,7 +42937,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) ### Methods @@ -52777,7 +42961,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L24) *** @@ -52795,7 +42979,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L132) *** @@ -52813,7 +42997,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L139) *** @@ -52831,7 +43015,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L158) *** @@ -52849,7 +43033,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L162) *** @@ -52867,7 +43051,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L112) *** @@ -52885,7 +43069,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L104) *** @@ -52905,7 +43089,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L38) *** @@ -52925,7 +43109,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L32) *** @@ -52945,7 +43129,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L62) *** @@ -52963,7 +43147,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L124) *** @@ -52981,7 +43165,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L78) *** @@ -52999,7 +43183,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chord_pro_formatter.ts#L96) @@ -53031,7 +43215,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -53051,7 +43235,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -53083,7 +43267,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_pro_parser.ts#L36) @@ -53132,7 +43316,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -53142,7 +43326,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L31) *** @@ -53152,7 +43336,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L35) *** @@ -53162,7 +43346,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L37) *** @@ -53172,7 +43356,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L33) *** @@ -53182,7 +43366,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L23) *** @@ -53192,7 +43376,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L21) *** @@ -53202,7 +43386,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L25) *** @@ -53212,7 +43396,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L27) *** @@ -53222,7 +43406,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -53242,7 +43426,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L160) *** @@ -53256,7 +43440,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L82) *** @@ -53270,7 +43454,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L177) *** @@ -53284,7 +43468,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L124) *** @@ -53304,7 +43488,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L107) *** @@ -53336,7 +43520,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L70) *** @@ -53354,7 +43538,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L84) *** @@ -53374,7 +43558,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L128) *** @@ -53392,7 +43576,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L94) *** @@ -53412,7 +43596,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L146) *** @@ -53426,7 +43610,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L118) *** @@ -53444,7 +43628,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L173) @@ -53476,7 +43660,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L40) *** @@ -53486,7 +43670,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L42) ### Methods @@ -53510,7 +43694,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L151) *** @@ -53528,7 +43712,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L156) *** @@ -53546,7 +43730,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L201) *** @@ -53564,7 +43748,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L184) *** @@ -53582,7 +43766,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L234) *** @@ -53600,7 +43784,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L259) *** @@ -53618,7 +43802,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L191) *** @@ -53636,7 +43820,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L213) *** @@ -53654,7 +43838,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L239) *** @@ -53677,7 +43861,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L49) *** @@ -53695,7 +43879,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L91) *** @@ -53733,7 +43917,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L114) *** @@ -53751,7 +43935,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L142) *** @@ -53769,7 +43953,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L138) *** @@ -53787,7 +43971,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L63) *** @@ -53805,7 +43989,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L56) *** @@ -53823,7 +44007,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L134) *** @@ -53841,7 +44025,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L100) *** @@ -53859,7 +44043,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet_serializer.ts#L124) @@ -53901,7 +44085,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) ### Properties @@ -53915,7 +44099,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) *** @@ -53925,7 +44109,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -53945,7 +44129,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -53969,7 +44153,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -53983,7 +44167,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -54005,7 +44189,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -54027,7 +44211,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -54047,7 +44231,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -54067,7 +44251,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -54087,7 +44271,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -54109,7 +44293,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -54129,7 +44313,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -54143,7 +44327,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -54163,7 +44347,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/chords_over_words_formatter.ts#L114) @@ -54230,7 +44414,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -54250,7 +44434,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -54282,7 +44466,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chords_over_words_parser.ts#L71) @@ -54312,7 +44496,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L7) ### Properties @@ -54322,7 +44506,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L5) ### Methods @@ -54338,7 +44522,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L23) *** @@ -54354,7 +44538,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L15) *** @@ -54368,7 +44552,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/comment.ts#L27) @@ -54406,7 +44590,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -54420,7 +44604,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L6) *** @@ -54430,7 +44614,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -54444,7 +44628,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L4) *** @@ -54458,7 +44642,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L8) *** @@ -54468,7 +44652,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -54486,7 +44670,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -54510,7 +44694,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -54524,7 +44708,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/composite.ts#L21) @@ -54565,7 +44749,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) ### Properties @@ -54575,7 +44759,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) @@ -54617,7 +44801,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) ### Properties @@ -54631,7 +44815,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) ### Accessors @@ -54662,7 +44846,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L66) *** @@ -54682,7 +44866,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_div_formatter.ts#L44) *** @@ -54702,7 +44886,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -54736,7 +44920,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L50) *** @@ -54764,7 +44948,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L26) @@ -54811,7 +44995,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) ### Properties @@ -54825,7 +45009,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) ### Accessors @@ -54852,7 +45036,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L66) *** @@ -54868,7 +45052,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L70) *** @@ -54884,7 +45068,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L72) ### Methods @@ -54914,7 +45098,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L50) *** @@ -54938,7 +45122,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L26) @@ -54981,7 +45165,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) ### Properties @@ -54995,7 +45179,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) ### Accessors @@ -55026,7 +45210,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L66) *** @@ -55046,7 +45230,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_table_formatter.ts#L45) *** @@ -55066,7 +45250,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -55100,7 +45284,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L50) *** @@ -55128,7 +45312,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/html_formatter.ts#L26) @@ -55180,7 +45364,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L249) ### Properties @@ -55194,7 +45378,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L51) *** @@ -55208,7 +45392,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L70) *** @@ -55222,7 +45406,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L55) *** @@ -55236,7 +45420,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L53) *** @@ -55246,7 +45430,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L74) *** @@ -55260,7 +45444,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L76) *** @@ -55274,7 +45458,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L72) *** @@ -55288,7 +45472,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L57) ### Accessors @@ -55304,7 +45488,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L285) *** @@ -55320,7 +45504,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L519) *** @@ -55336,7 +45520,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L490) *** @@ -55352,7 +45536,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L301) *** @@ -55368,7 +45552,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L305) *** @@ -55384,7 +45568,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L59) ### Methods @@ -55398,7 +45582,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L595) *** @@ -55412,7 +45596,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L603) *** @@ -55430,7 +45614,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L558) *** @@ -55444,7 +45628,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L317) *** @@ -55462,7 +45646,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L280) *** @@ -55480,7 +45664,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L410) *** @@ -55498,7 +45682,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L390) *** @@ -55512,7 +45696,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L402) *** @@ -55526,7 +45710,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L398) *** @@ -55540,7 +45724,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L293) *** @@ -55554,7 +45738,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L406) *** @@ -55568,7 +45752,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L394) *** @@ -55582,7 +45766,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L297) *** @@ -55596,7 +45780,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L630) *** @@ -55614,7 +45798,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L644) *** @@ -55632,7 +45816,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L611) *** @@ -55650,7 +45834,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L362) *** @@ -55668,7 +45852,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L386) *** @@ -55686,7 +45870,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L342) *** @@ -55704,7 +45888,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L382) *** @@ -55718,7 +45902,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L309) *** @@ -55736,7 +45920,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L456) *** @@ -55754,7 +45938,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L476) *** @@ -55772,7 +45956,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L431) *** @@ -55790,7 +45974,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L452) *** @@ -55814,7 +45998,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L480) *** @@ -55832,7 +46016,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L544) *** @@ -55846,7 +46030,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L582) *** @@ -55860,7 +46044,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L568) *** @@ -55878,7 +46062,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L625) *** @@ -55906,7 +46090,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L245) *** @@ -55926,7 +46110,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L419) *** @@ -55946,7 +46130,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L152) *** @@ -55968,7 +46152,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L193) *** @@ -55990,7 +46174,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L161) *** @@ -56008,7 +46192,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L78) *** @@ -56028,7 +46212,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L93) *** @@ -56046,7 +46230,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L209) *** @@ -56072,7 +46256,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L108) *** @@ -56090,7 +46274,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L617) *** @@ -56114,7 +46298,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L176) *** @@ -56132,7 +46316,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L235) *** @@ -56150,7 +46334,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L217) *** @@ -56168,7 +46352,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/key.ts#L225) @@ -56202,7 +46386,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L62) ### Properties @@ -56216,7 +46400,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L60) *** @@ -56226,7 +46410,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L38) *** @@ -56238,7 +46422,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L29) *** @@ -56248,7 +46432,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L40) *** @@ -56258,7 +46442,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L44) *** @@ -56272,7 +46456,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L52) *** @@ -56282,7 +46466,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L42) *** @@ -56295,7 +46479,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L36) ### Accessors @@ -56311,7 +46495,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L223) ### Methods @@ -56331,7 +46515,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L174) *** @@ -56349,7 +46533,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L207) *** @@ -56371,7 +46555,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L83) *** @@ -56391,7 +46575,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L201) *** @@ -56409,7 +46593,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L191) *** @@ -56425,7 +46609,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L107) *** @@ -56439,7 +46623,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L185) *** @@ -56457,7 +46641,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L170) *** @@ -56473,7 +46657,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L99) *** @@ -56489,7 +46673,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L129) *** @@ -56505,7 +46689,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L137) *** @@ -56521,7 +46705,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L71) *** @@ -56537,7 +46721,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L145) *** @@ -56551,7 +46735,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L75) *** @@ -56565,7 +46749,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L241) *** @@ -56579,7 +46763,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L237) *** @@ -56595,7 +46779,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L153) *** @@ -56611,7 +46795,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L161) *** @@ -56629,7 +46813,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L196) *** @@ -56647,7 +46831,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L111) *** @@ -56669,7 +46853,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/line.ts#L213) @@ -56705,7 +46889,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -56719,7 +46903,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L6) *** @@ -56733,7 +46917,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L4) *** @@ -56747,7 +46931,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L8) *** @@ -56757,7 +46941,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -56775,7 +46959,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -56793,7 +46977,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -56807,7 +46991,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/literal.ts#L15) @@ -56850,7 +47034,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L28) ### Properties @@ -56860,7 +47044,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -56880,7 +47064,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -56900,7 +47084,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -56920,7 +47104,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -56940,7 +47124,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -56960,7 +47144,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -56980,7 +47164,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -57000,7 +47184,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -57020,7 +47204,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -57040,7 +47224,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -57060,7 +47244,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -57080,7 +47264,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -57100,7 +47284,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -57120,7 +47304,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -57140,7 +47324,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L46) *** @@ -57154,7 +47338,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L178) *** @@ -57172,7 +47356,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L174) *** @@ -57190,7 +47374,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L42) *** @@ -57231,7 +47415,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L109) *** @@ -57249,7 +47433,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L150) *** @@ -57271,7 +47455,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L78) *** @@ -57293,7 +47477,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L82) *** @@ -57311,7 +47495,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L36) *** @@ -57329,7 +47513,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L138) *** @@ -57349,7 +47533,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata.ts#L70) @@ -57385,7 +47569,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -57403,7 +47587,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L52) *** @@ -57422,7 +47606,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L68) *** @@ -57441,7 +47625,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -57459,7 +47643,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L18) *** @@ -57479,7 +47663,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L103) *** @@ -57493,7 +47677,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L107) *** @@ -57514,7 +47698,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/paragraph.ts#L28) @@ -57548,7 +47732,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/soft_line_break.ts#L2) @@ -57590,7 +47774,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L54) ### Properties @@ -57600,7 +47784,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L44) *** @@ -57610,7 +47794,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L46) *** @@ -57624,7 +47808,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L35) *** @@ -57637,7 +47821,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L42) *** @@ -57647,7 +47831,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L48) ### Accessors @@ -57667,7 +47851,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -57687,7 +47871,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -57708,7 +47892,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L64) *** @@ -57731,7 +47915,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L78) *** @@ -57751,7 +47935,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -57771,7 +47955,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -57791,7 +47975,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -57811,7 +47995,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -57829,7 +48013,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L156) *** @@ -57849,7 +48033,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -57869,7 +48053,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -57889,7 +48073,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L148) *** @@ -57909,7 +48093,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -57929,7 +48113,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -57949,7 +48133,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -57969,7 +48153,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -57989,7 +48173,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -58007,7 +48191,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L380) *** @@ -58034,7 +48218,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L304) *** @@ -58063,7 +48247,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L357) *** @@ -58081,7 +48265,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L186) *** @@ -58099,7 +48283,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L417) *** @@ -58124,7 +48308,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L453) *** @@ -58142,7 +48326,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L427) *** @@ -58164,7 +48348,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L194) *** @@ -58186,7 +48370,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L198) *** @@ -58204,7 +48388,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L164) *** @@ -58241,7 +48425,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L398) *** @@ -58278,7 +48462,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L485) *** @@ -58292,7 +48476,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L332) *** @@ -58310,7 +48494,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L86) *** @@ -58338,7 +48522,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L225) *** @@ -58366,7 +48550,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L211) *** @@ -58386,7 +48570,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L190) *** @@ -58421,7 +48605,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L252) *** @@ -58452,7 +48636,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L292) *** @@ -58483,7 +48667,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L279) *** @@ -58507,7 +48691,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/song.ts#L322) @@ -58549,7 +48733,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L412) ### Properties @@ -58559,7 +48743,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L402) *** @@ -58569,7 +48753,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L406) *** @@ -58579,7 +48763,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L404) *** @@ -58589,7 +48773,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L408) *** @@ -58599,7 +48783,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L410) *** @@ -58613,7 +48797,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L6) *** @@ -58627,7 +48811,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L4) *** @@ -58641,7 +48825,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -58673,7 +48857,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L491) *** @@ -58693,7 +48877,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L500) *** @@ -58725,7 +48909,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L513) ### Methods @@ -58747,7 +48931,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L555) *** @@ -58766,7 +48950,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L539) *** @@ -58782,7 +48966,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L521) *** @@ -58796,7 +48980,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L477) *** @@ -58812,7 +48996,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L547) *** @@ -58828,7 +49012,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L529) *** @@ -58842,7 +49026,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L465) *** @@ -58856,7 +49040,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L473) *** @@ -58870,7 +49054,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L469) *** @@ -58890,7 +49074,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L563) *** @@ -58906,7 +49090,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L559) *** @@ -58924,7 +49108,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L437) *** @@ -58942,7 +49126,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L455) *** @@ -58962,7 +49146,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/tag.ts#L445) @@ -58998,7 +49182,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -59012,7 +49196,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L6) *** @@ -59022,7 +49206,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -59036,7 +49220,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L4) *** @@ -59050,7 +49234,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/ast_component.ts#L8) *** @@ -59060,7 +49244,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -59070,7 +49254,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -59080,7 +49264,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -59098,7 +49282,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -59132,7 +49316,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -59154,7 +49338,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -59174,7 +49358,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -59194,7 +49378,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -59208,7 +49392,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -59250,7 +49434,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L26) ### Properties @@ -59264,7 +49448,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/formatter.ts#L7) *** @@ -59274,7 +49458,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L17) ### Methods @@ -59294,7 +49478,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L102) *** @@ -59318,7 +49502,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L24) *** @@ -59332,7 +49516,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L33) *** @@ -59354,7 +49538,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L161) *** @@ -59376,7 +49560,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L129) *** @@ -59396,7 +49580,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L66) *** @@ -59416,7 +49600,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L142) *** @@ -59436,7 +49620,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L94) *** @@ -59458,7 +49642,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L150) *** @@ -59478,7 +49662,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L53) *** @@ -59492,7 +49676,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L44) *** @@ -59510,7 +49694,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L86) *** @@ -59528,7 +49712,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/formatter/text_formatter.ts#L78) @@ -59575,7 +49759,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -59589,7 +49773,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L31) *** @@ -59603,7 +49787,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L35) *** @@ -59613,7 +49797,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -59627,7 +49811,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L37) *** @@ -59641,7 +49825,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L33) *** @@ -59655,7 +49839,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L23) *** @@ -59669,7 +49853,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L21) *** @@ -59683,7 +49867,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L25) *** @@ -59697,7 +49881,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L27) *** @@ -59711,7 +49895,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -59735,7 +49919,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L160) *** @@ -59753,7 +49937,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -59773,7 +49957,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -59791,7 +49975,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L177) *** @@ -59809,7 +49993,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L124) *** @@ -59833,7 +50017,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L107) *** @@ -59847,7 +50031,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -59883,7 +50067,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L70) *** @@ -59905,7 +50089,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -59929,7 +50113,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L128) *** @@ -59951,7 +50135,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L94) *** @@ -59975,7 +50159,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L146) *** @@ -59993,7 +50177,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L118) *** @@ -60015,7 +50199,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/chord_sheet_parser.ts#L173) *** @@ -60029,7 +50213,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -60049,7 +50233,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/parser/ultimate_guitar_parser.ts#L87) @@ -60124,7 +50308,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L62) @@ -60144,7 +50328,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L13) @@ -60164,7 +50348,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L27) @@ -60184,7 +50368,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L55) @@ -60204,7 +50388,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L34) @@ -60220,7 +50404,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L77) @@ -60236,7 +50420,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L76) @@ -60252,7 +50436,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L78) @@ -60268,7 +50452,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L75) @@ -60288,7 +50472,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L41) @@ -60308,7 +50492,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/constants.ts#L48) @@ -60438,7 +50622,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/index.ts#L75) @@ -60650,7 +50834,7 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/9c6f2f6de369bd12244e28526047676dd5086772/src/template_helpers.ts#L98) # Media @@ -60717,7 +50901,375 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes[**chordsheetjs**](#readmemd) • **Docs** +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/## ChordSheetJS [![Code Climate] (https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) + +A JavaScript library for parsing and formatting chord sheets + +**Contents** + +- [Installation](#installation) +- [How to ...?](#how-to-) +- [Supported ChordPro directives](#supported-chordpro-directives) +- [API docs](#api-docs) +- [Contributing](#_mediacontributingmd) + +### Installation + +#### Package managers + +`ChordSheetJS` is on npm, to install run: + +```bash +npm install chordsheetjs +``` + +Load with `import`: + +```javascript +import ChordSheetJS from 'chordsheetjs'; +``` + +or `require()`: + +```javascript +var ChordSheetJS = require('chordsheetjs').default; +``` + +#### Standalone bundle file + +If you're not using a build tool, you can download and use the `bundle.js` from the +[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): + +```html + + +``` + +### How to ...? + +#### Parse chord sheet + +##### Regular chord sheets + +```javascript +const chordSheet = ` + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.ChordsOverWordsParser(); +const song = parser.parse(chordSheet); +``` + +##### Ultimate Guitar chord sheets + +```javascript +const chordSheet = ` +[Chorus] + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.UltimateGuitarParser(); +const song = parser.parse(chordSheet); +``` + +##### Chord pro format + +```javascript +const chordSheet = ` +{title: Let it be} +{subtitle: ChordSheetJS example version} + +{start_of_chorus: Chorus} +Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be +[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] +{end_of_chorus}`.substring(1); + +const parser = new ChordSheetJS.ChordProParser(); +const song = parser.parse(chordSheet); +``` + +#### Display a parsed sheet + +##### Plain text format + +```javascript +const formatter = new ChordSheetJS.TextFormatter(); +const disp = formatter.format(song); +``` + +##### HTML format + +###### Table-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlTableFormatter(); +const disp = formatter.format(song); +``` + +###### Div-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlDivFormatter(); +const disp = formatter.format(song); +``` + +##### Chord pro format + +```javascript +const formatter = new ChordSheetJS.ChordProFormatter(); +const disp = formatter.format(song); +``` + +#### Serialize/deserialize + +Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by +third-party libraries. The serialized object can also be deserialized back into a `Song`. + +```javascript +const serializedSong = new ChordSheetSerializer().serialize(song); +const deserialized = new ChordSheetSerializer().deserialize(serializedSong); +``` + +#### Add styling + +The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: + +```javascript +HtmlTableFormatter.cssString(); +// .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssString('.chordSheetViewer'); +// .chordSheetViewer .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssObject(); +// '.paragraph': { +// marginBottom: '1em' +// } +``` + +#### Parsing and modifying chords + +```javascript +import { Chord } from 'chordsheetjs'; +``` + +##### Parse + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +``` + +Parse numeric chords (Nashville system): + +```javascript +const chord = Chord.parse('b1sus4/#3'); +``` + +##### Display with #toString + +Use #toString() to convert the chord to a chord string (eg Dsus/F#) + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +chord.toString(); // --> "Ebsus4/Bb" +``` + +##### Clone + +```javascript +var chord2 = chord.clone(); +``` + +##### Normalize + +Normalizes keys B#, E#, Cb and Fb to C, F, B and E + +```javascript +const chord = Chord.parse('E#/B#'); +normalizedChord = chord.normalize(); +normalizedChord.toString(); // --> "F/C" +``` + +##### ~~Switch modifier~~ + +***Deprecated*** + +Convert # to b and vice versa + +```javascript +const chord = parseChord('Eb/Bb'); +const chord2 = chord.switchModifier(); +chord2.toString(); // --> "D#/A#" +``` + +##### Use specific modifier + +Set the chord to a specific modifier (# or b) + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('#'); +chord2.toString(); // --> "D#/A#" +``` + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('b'); +chord2.toString(); // --> "Eb/Bb" +``` + +##### Transpose up + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeUp(); +chord2.toString(); // -> "E/B" +``` + +##### Transpose down + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeDown(); +chord2.toString(); // -> "D/A" +``` + +##### Transpose + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(4); +chord2.toString(); // -> "E/G#" +``` + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(-4); +chord2.toString(); // -> "Ab/C" +``` + +##### Convert numeric chord to chord symbol + +```javascript +const numericChord = Chord.parse('2/4'); +const chordSymbol = numericChord.toChordSymbol('E'); +chordSymbol.toString(); // -> "F#/A" +``` + +### Supported ChordPro directives + +All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually +use those to change the generated output. + +:heavy_check_mark: = supported + +:clock2: = will be supported in a future version + +:heavy_multiplication_x: = currently no plans to support it in the near future + +#### Meta-data directives + +| Directive | Support | +|:---------------- |:------------------:| +| title (short: t) | :heavy_check_mark: | +| subtitle | :heavy_check_mark: | +| artist | :heavy_check_mark: | +| composer | :heavy_check_mark: | +| lyricist | :heavy_check_mark: | +| copyright | :heavy_check_mark: | +| album | :heavy_check_mark: | +| year | :heavy_check_mark: | +| key | :heavy_check_mark: | +| time | :heavy_check_mark: | +| tempo | :heavy_check_mark: | +| duration | :heavy_check_mark: | +| capo | :heavy_check_mark: | +| meta | :heavy_check_mark: | + +#### Formatting directives + +| Directive | Support | +|:-------------------------- |:------------------------:| +| comment (short: c) | :heavy_check_mark: | +| comment_italic (short: ci) | :heavy_multiplication_x: | +| comment_box (short: cb) | :heavy_multiplication_x: | +| chorus | :heavy_multiplication_x: | +| image | :heavy_multiplication_x: | + +#### Environment directives + +| Directive | Support | +|:---------------------------- |:------------------:| +| start_of_chorus (short: soc) | :heavy_check_mark: | +| end_of_chorus (short: eoc) | :heavy_check_mark: | +| start_of_verse | :heavy_check_mark: | +| end_of_verse | :heavy_check_mark: | +| start_of_tab (short: sot) | :heavy_check_mark: | +| end_of_tab (short: eot) | :heavy_check_mark: | +| start_of_grid | :heavy_check_mark: | +| end_of_grid | :heavy_check_mark: | + +#### Chord diagrams + +| Directive | Support | +|:--------- |:------------------:| +| define | :heavy_check_mark: | +| chord | :heavy_check_mark: | + +#### Fonts, sizes and colours + +| Directive | Support | +|:----------- |:------------------------:| +| textfont | :heavy_check_mark: | +| textsize | :heavy_check_mark: | +| textcolour | :heavy_check_mark: | +| chordfont | :heavy_check_mark: | +| chordsize | :heavy_check_mark: | +| chordcolour | :heavy_check_mark: | +| tabfont | :heavy_multiplication_x: | +| tabsize | :heavy_multiplication_x: | +| tabcolour | :heavy_multiplication_x: | + +#### Output related directives + +| Directive | Support | +|:------------------------------ |:------------------------:| +| new_page (short: np) | :heavy_multiplication_x: | +| new_physical_page (short: npp) | :heavy_multiplication_x: | +| column_break (short: cb) | :heavy_multiplication_x: | +| grid (short: g) | :heavy_multiplication_x: | +| no_grid (short: ng) | :heavy_multiplication_x: | +| titles | :heavy_multiplication_x: | +| columns (short: col) | :heavy_multiplication_x: | + +#### Custom extensions + +| Directive | Support | +|:--------- |:------------------:| +| x_ | :heavy_check_mark: | + +### API docs + +Note: all classes, methods and constants that are documented here can be considered public API and will only be +subject to breaking changes between major versions. + +# Classes + + + +[**chordsheetjs**](#readmemd) • **Docs** + *** [chordsheetjs](#globalsmd) / Chord @@ -60762,7 +51314,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L344) +[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L344) ### Properties @@ -60776,7 +51328,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L24) +[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L24) *** @@ -60790,7 +51342,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L26) +[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L26) *** @@ -60804,7 +51356,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L28) +[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L28) ### Methods @@ -60820,7 +51372,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L60) +[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L60) *** @@ -60838,7 +51390,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L374) +[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L374) *** @@ -60854,7 +51406,7 @@ Determines whether the chord is a chord solfege ##### Defined in -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L160) +[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L160) *** @@ -60870,7 +51422,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L110) +[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L110) *** @@ -60884,7 +51436,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L432) +[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L432) *** @@ -60900,7 +51452,7 @@ Determines whether the chord is a numeral ##### Defined in -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L246) +[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L246) *** @@ -60916,7 +51468,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L227) +[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L227) *** @@ -60930,7 +51482,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L436) +[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L436) *** @@ -60981,7 +51533,7 @@ the normalized chord ##### Defined in -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L294) +[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L294) *** @@ -60999,7 +51551,7 @@ the normalized chord ##### Defined in -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L442) +[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L442) *** @@ -61026,7 +51578,7 @@ the chord solfege ##### Defined in -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L122) +[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L122) *** @@ -61055,7 +51607,7 @@ the chord solfege string ##### Defined in -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L152) +[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L152) *** @@ -61082,7 +51634,7 @@ the chord symbol ##### Defined in -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L72) +[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L72) *** @@ -61111,7 +51663,7 @@ the chord symbol string ##### Defined in -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L102) +[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L102) *** @@ -61136,7 +51688,7 @@ the numeral chord ##### Defined in -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L194) +[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L194) *** @@ -61163,7 +51715,7 @@ the numeral chord string ##### Defined in -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L219) +[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L219) *** @@ -61188,7 +51740,7 @@ the numeric chord ##### Defined in -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L170) +[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L170) *** @@ -61215,7 +51767,7 @@ the numeric chord string ##### Defined in -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L238) +[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L238) *** @@ -61244,7 +51796,7 @@ the chord string ##### Defined in -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L257) +[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L257) *** @@ -61268,7 +51820,7 @@ the new, transposed chord ##### Defined in -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L340) +[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L340) *** @@ -61286,7 +51838,7 @@ the new, transposed chord ##### Defined in -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L331) +[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L331) *** @@ -61304,7 +51856,7 @@ the new, transposed chord ##### Defined in -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L323) +[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L323) *** @@ -61328,7 +51880,7 @@ the new, changed chord ##### Defined in -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L315) +[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L315) *** @@ -61354,7 +51906,7 @@ the new, changed chord ##### Defined in -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L407) +[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L407) *** @@ -61382,7 +51934,7 @@ the new, changed chord ##### Defined in -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L380) +[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L380) *** @@ -61405,7 +51957,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L36) +[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L36) *** @@ -61423,7 +51975,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L44) +[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord.ts#L44) @@ -61467,7 +52019,7 @@ A chord definitions overrides a previous chord definition for the exact same cho ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L47) +[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L47) ### Properties @@ -61480,7 +52032,7 @@ The offset must be 1 or higher. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L24) +[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L24) *** @@ -61497,7 +52049,7 @@ Note that the values -, x, X, and N are used to designate a string without finge ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L45) +[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L45) *** @@ -61513,7 +52065,7 @@ the topmost fret position is 1. With base-fret 3, fret position 1 indicates the ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L34) +[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L34) *** @@ -61525,7 +52077,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L17) +[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L17) ### Methods @@ -61539,7 +52091,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L54) +[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/chord_definition.ts#L54) @@ -61581,7 +52133,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -61591,7 +52143,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -61601,7 +52153,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -61611,7 +52163,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -61629,7 +52181,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -61645,7 +52197,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -61661,7 +52213,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -61685,7 +52237,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -61703,7 +52255,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -61721,7 +52273,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -61735,7 +52287,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -61759,7 +52311,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -61777,7 +52329,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -61819,7 +52371,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) ### Properties @@ -61833,7 +52385,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) ### Methods @@ -61857,7 +52409,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L24) *** @@ -61875,7 +52427,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L132) *** @@ -61893,7 +52445,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L139) *** @@ -61911,7 +52463,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L158) *** @@ -61929,7 +52481,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L162) *** @@ -61947,7 +52499,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L112) *** @@ -61965,7 +52517,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L104) *** @@ -61985,7 +52537,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L38) *** @@ -62005,7 +52557,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L32) *** @@ -62025,7 +52577,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L62) *** @@ -62043,7 +52595,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L124) *** @@ -62061,7 +52613,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L78) *** @@ -62079,7 +52631,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chord_pro_formatter.ts#L96) @@ -62111,7 +52663,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -62131,7 +52683,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -62163,7 +52715,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_pro_parser.ts#L36) @@ -62212,7 +52764,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -62222,7 +52774,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L31) *** @@ -62232,7 +52784,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L35) *** @@ -62242,7 +52794,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L37) *** @@ -62252,7 +52804,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L33) *** @@ -62262,7 +52814,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L23) *** @@ -62272,7 +52824,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L21) *** @@ -62282,7 +52834,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L25) *** @@ -62292,7 +52844,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L27) *** @@ -62302,7 +52854,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -62322,7 +52874,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L160) *** @@ -62336,7 +52888,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L82) *** @@ -62350,7 +52902,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L177) *** @@ -62364,7 +52916,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L124) *** @@ -62384,7 +52936,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L107) *** @@ -62416,7 +52968,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L70) *** @@ -62434,7 +52986,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L84) *** @@ -62454,7 +53006,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L128) *** @@ -62472,7 +53024,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L94) *** @@ -62492,7 +53044,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L146) *** @@ -62506,7 +53058,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L118) *** @@ -62524,7 +53076,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L173) @@ -62556,7 +53108,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L40) *** @@ -62566,7 +53118,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L42) ### Methods @@ -62590,7 +53142,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L151) *** @@ -62608,7 +53160,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L156) *** @@ -62626,7 +53178,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L201) *** @@ -62644,7 +53196,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L184) *** @@ -62662,7 +53214,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L234) *** @@ -62680,7 +53232,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L259) *** @@ -62698,7 +53250,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L191) *** @@ -62716,7 +53268,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L213) *** @@ -62734,7 +53286,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L239) *** @@ -62757,7 +53309,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L49) *** @@ -62775,7 +53327,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L91) *** @@ -62813,7 +53365,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L114) *** @@ -62831,7 +53383,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L142) *** @@ -62849,7 +53401,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L138) *** @@ -62867,7 +53419,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L63) *** @@ -62885,7 +53437,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L56) *** @@ -62903,7 +53455,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L134) *** @@ -62921,7 +53473,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L100) *** @@ -62939,7 +53491,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet_serializer.ts#L124) @@ -62981,7 +53533,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) ### Properties @@ -62995,7 +53547,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) *** @@ -63005,7 +53557,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -63025,7 +53577,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -63049,7 +53601,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -63063,7 +53615,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -63085,7 +53637,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -63107,7 +53659,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -63127,7 +53679,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -63147,7 +53699,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -63167,7 +53719,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -63189,7 +53741,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -63209,7 +53761,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -63223,7 +53775,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -63243,7 +53795,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/chords_over_words_formatter.ts#L114) @@ -63310,7 +53862,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -63330,7 +53882,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -63362,7 +53914,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chords_over_words_parser.ts#L71) @@ -63392,7 +53944,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L7) ### Properties @@ -63402,7 +53954,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L5) ### Methods @@ -63418,7 +53970,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L23) *** @@ -63434,7 +53986,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L15) *** @@ -63448,7 +54000,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/comment.ts#L27) @@ -63486,7 +54038,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -63500,7 +54052,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L6) *** @@ -63510,7 +54062,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -63524,7 +54076,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L4) *** @@ -63538,7 +54090,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L8) *** @@ -63548,7 +54100,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -63566,7 +54118,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -63590,7 +54142,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -63604,7 +54156,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/composite.ts#L21) @@ -63645,7 +54197,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) ### Properties @@ -63655,7 +54207,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) @@ -63697,7 +54249,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) ### Properties @@ -63711,7 +54263,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) ### Accessors @@ -63742,7 +54294,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L66) *** @@ -63762,7 +54314,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_div_formatter.ts#L44) *** @@ -63782,7 +54334,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -63816,7 +54368,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L50) *** @@ -63844,7 +54396,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L26) @@ -63891,7 +54443,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) ### Properties @@ -63905,7 +54457,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) ### Accessors @@ -63932,7 +54484,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L66) *** @@ -63948,7 +54500,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L70) *** @@ -63964,7 +54516,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L72) ### Methods @@ -63994,7 +54546,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L50) *** @@ -64018,7 +54570,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L26) @@ -64061,7 +54613,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) ### Properties @@ -64075,7 +54627,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) ### Accessors @@ -64106,7 +54658,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L66) *** @@ -64126,7 +54678,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_table_formatter.ts#L45) *** @@ -64146,7 +54698,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -64180,7 +54732,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L50) *** @@ -64208,7 +54760,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/html_formatter.ts#L26) @@ -64260,7 +54812,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L249) ### Properties @@ -64274,7 +54826,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L51) *** @@ -64288,7 +54840,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L70) *** @@ -64302,7 +54854,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L55) *** @@ -64316,7 +54868,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L53) *** @@ -64326,7 +54878,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L74) *** @@ -64340,7 +54892,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L76) *** @@ -64354,7 +54906,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L72) *** @@ -64368,7 +54920,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L57) ### Accessors @@ -64384,7 +54936,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L285) *** @@ -64400,7 +54952,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L519) *** @@ -64416,7 +54968,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L490) *** @@ -64432,7 +54984,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L301) *** @@ -64448,7 +55000,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L305) *** @@ -64464,7 +55016,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L59) ### Methods @@ -64478,7 +55030,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L595) *** @@ -64492,7 +55044,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L603) *** @@ -64510,7 +55062,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L558) *** @@ -64524,7 +55076,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L317) *** @@ -64542,7 +55094,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L280) *** @@ -64560,7 +55112,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L410) *** @@ -64578,7 +55130,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L390) *** @@ -64592,7 +55144,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L402) *** @@ -64606,7 +55158,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L398) *** @@ -64620,7 +55172,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L293) *** @@ -64634,7 +55186,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L406) *** @@ -64648,7 +55200,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L394) *** @@ -64662,7 +55214,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L297) *** @@ -64676,7 +55228,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L630) *** @@ -64694,7 +55246,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L644) *** @@ -64712,7 +55264,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L611) *** @@ -64730,7 +55282,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L362) *** @@ -64748,7 +55300,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L386) *** @@ -64766,7 +55318,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L342) *** @@ -64784,7 +55336,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L382) *** @@ -64798,7 +55350,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L309) *** @@ -64816,7 +55368,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L456) *** @@ -64834,7 +55386,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L476) *** @@ -64852,7 +55404,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L431) *** @@ -64870,7 +55422,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L452) *** @@ -64894,7 +55446,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L480) *** @@ -64912,7 +55464,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L544) *** @@ -64926,7 +55478,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L582) *** @@ -64940,7 +55492,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L568) *** @@ -64958,7 +55510,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L625) *** @@ -64986,7 +55538,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L245) *** @@ -65006,7 +55558,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L419) *** @@ -65026,7 +55578,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L152) *** @@ -65048,7 +55600,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L193) *** @@ -65070,7 +55622,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L161) *** @@ -65088,7 +55640,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L78) *** @@ -65108,7 +55660,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L93) *** @@ -65126,7 +55678,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L209) *** @@ -65152,7 +55704,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L108) *** @@ -65170,7 +55722,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L617) *** @@ -65194,7 +55746,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L176) *** @@ -65212,7 +55764,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L235) *** @@ -65230,7 +55782,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L217) *** @@ -65248,7 +55800,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/key.ts#L225) @@ -65282,7 +55834,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L62) ### Properties @@ -65296,7 +55848,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L60) *** @@ -65306,7 +55858,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L38) *** @@ -65318,7 +55870,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L29) *** @@ -65328,7 +55880,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L40) *** @@ -65338,7 +55890,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L44) *** @@ -65352,7 +55904,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L52) *** @@ -65362,7 +55914,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L42) *** @@ -65375,7 +55927,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L36) ### Accessors @@ -65391,7 +55943,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L223) ### Methods @@ -65411,7 +55963,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L174) *** @@ -65429,7 +55981,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L207) *** @@ -65451,7 +56003,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L83) *** @@ -65471,7 +56023,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L201) *** @@ -65489,7 +56041,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L191) *** @@ -65505,7 +56057,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L107) *** @@ -65519,7 +56071,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L185) *** @@ -65537,7 +56089,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L170) *** @@ -65553,7 +56105,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L99) *** @@ -65569,7 +56121,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L129) *** @@ -65585,7 +56137,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L137) *** @@ -65601,7 +56153,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L71) *** @@ -65617,7 +56169,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L145) *** @@ -65631,7 +56183,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L75) *** @@ -65645,7 +56197,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L241) *** @@ -65659,7 +56211,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L237) *** @@ -65675,7 +56227,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L153) *** @@ -65691,7 +56243,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L161) *** @@ -65709,7 +56261,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L196) *** @@ -65727,7 +56279,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L111) *** @@ -65749,7 +56301,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/line.ts#L213) @@ -65785,7 +56337,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -65799,7 +56351,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L6) *** @@ -65813,7 +56365,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L4) *** @@ -65827,7 +56379,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L8) *** @@ -65837,7 +56389,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -65855,7 +56407,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -65873,7 +56425,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -65887,7 +56439,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/literal.ts#L15) @@ -65930,7 +56482,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L28) ### Properties @@ -65940,7 +56492,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -65960,7 +56512,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -65980,7 +56532,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -66000,7 +56552,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -66020,7 +56572,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -66040,7 +56592,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -66060,7 +56612,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -66080,7 +56632,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -66100,7 +56652,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -66120,7 +56672,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -66140,7 +56692,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -66160,7 +56712,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -66180,7 +56732,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -66200,7 +56752,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -66220,7 +56772,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L46) *** @@ -66234,7 +56786,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L178) *** @@ -66252,7 +56804,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L174) *** @@ -66270,7 +56822,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L42) *** @@ -66311,7 +56863,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L109) *** @@ -66329,7 +56881,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L150) *** @@ -66351,7 +56903,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L78) *** @@ -66373,7 +56925,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L82) *** @@ -66391,7 +56943,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L36) *** @@ -66409,7 +56961,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L138) *** @@ -66429,7 +56981,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata.ts#L70) @@ -66465,7 +57017,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -66483,7 +57035,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L52) *** @@ -66502,7 +57054,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L68) *** @@ -66521,7 +57073,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -66539,7 +57091,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L18) *** @@ -66559,7 +57111,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L103) *** @@ -66573,7 +57125,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L107) *** @@ -66594,7 +57146,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/paragraph.ts#L28) @@ -66628,7 +57180,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/soft_line_break.ts#L2) @@ -66670,7 +57222,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L54) ### Properties @@ -66680,7 +57232,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L44) *** @@ -66690,7 +57242,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L46) *** @@ -66704,7 +57256,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L35) *** @@ -66717,7 +57269,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L42) *** @@ -66727,7 +57279,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L48) ### Accessors @@ -66747,7 +57299,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -66767,7 +57319,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -66788,7 +57340,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L64) *** @@ -66811,7 +57363,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L78) *** @@ -66831,7 +57383,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -66851,7 +57403,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -66871,7 +57423,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -66891,7 +57443,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -66909,7 +57461,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L156) *** @@ -66929,7 +57481,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -66949,7 +57501,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -66969,7 +57521,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L148) *** @@ -66989,7 +57541,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -67009,7 +57561,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -67029,7 +57581,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -67049,7 +57601,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -67069,7 +57621,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -67087,7 +57639,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L380) *** @@ -67114,7 +57666,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L304) *** @@ -67143,7 +57695,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L357) *** @@ -67161,7 +57713,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L186) *** @@ -67179,7 +57731,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L417) *** @@ -67204,7 +57756,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L453) *** @@ -67222,7 +57774,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L427) *** @@ -67244,7 +57796,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L194) *** @@ -67266,7 +57818,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L198) *** @@ -67284,7 +57836,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L164) *** @@ -67321,7 +57873,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L398) *** @@ -67358,7 +57910,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L485) *** @@ -67372,7 +57924,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L332) *** @@ -67390,7 +57942,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L86) *** @@ -67418,7 +57970,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L225) *** @@ -67446,7 +57998,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L211) *** @@ -67466,7 +58018,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L190) *** @@ -67501,7 +58053,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L252) *** @@ -67532,7 +58084,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L292) *** @@ -67563,7 +58115,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L279) *** @@ -67587,7 +58139,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/song.ts#L322) @@ -67629,7 +58181,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L412) ### Properties @@ -67639,7 +58191,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L402) *** @@ -67649,7 +58201,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L406) *** @@ -67659,7 +58211,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L404) *** @@ -67669,7 +58221,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L408) *** @@ -67679,7 +58231,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L410) *** @@ -67693,7 +58245,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L6) *** @@ -67707,7 +58259,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L4) *** @@ -67721,7 +58273,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -67753,7 +58305,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L491) *** @@ -67773,7 +58325,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L500) *** @@ -67805,7 +58357,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L513) ### Methods @@ -67827,7 +58379,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L555) *** @@ -67846,7 +58398,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L539) *** @@ -67862,7 +58414,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L521) *** @@ -67876,7 +58428,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L477) *** @@ -67892,7 +58444,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L547) *** @@ -67908,7 +58460,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L529) *** @@ -67922,7 +58474,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L465) *** @@ -67936,7 +58488,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L473) *** @@ -67950,7 +58502,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L469) *** @@ -67970,7 +58522,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L563) *** @@ -67986,7 +58538,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L559) *** @@ -68004,7 +58556,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L437) *** @@ -68022,7 +58574,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L455) *** @@ -68042,7 +58594,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/tag.ts#L445) @@ -68078,7 +58630,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -68092,7 +58644,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L6) *** @@ -68102,7 +58654,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -68116,7 +58668,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L4) *** @@ -68130,7 +58682,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/ast_component.ts#L8) *** @@ -68140,7 +58692,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -68150,7 +58702,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -68160,7 +58712,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -68178,7 +58730,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -68212,7 +58764,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -68234,7 +58786,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -68254,7 +58806,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -68274,7 +58826,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -68288,7 +58840,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -68330,7 +58882,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L26) ### Properties @@ -68344,7 +58896,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/formatter.ts#L7) *** @@ -68354,7 +58906,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L17) ### Methods @@ -68374,7 +58926,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L102) *** @@ -68398,7 +58950,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L24) *** @@ -68412,7 +58964,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L33) *** @@ -68434,7 +58986,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L161) *** @@ -68456,7 +59008,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L129) *** @@ -68476,7 +59028,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L66) *** @@ -68496,7 +59048,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L142) *** @@ -68516,7 +59068,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L94) *** @@ -68538,7 +59090,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L150) *** @@ -68558,7 +59110,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L53) *** @@ -68572,7 +59124,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L44) *** @@ -68590,7 +59142,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L86) *** @@ -68608,7 +59160,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/formatter/text_formatter.ts#L78) @@ -68655,7 +59207,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -68669,7 +59221,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L31) *** @@ -68683,7 +59235,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L35) *** @@ -68693,7 +59245,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -68707,7 +59259,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L37) *** @@ -68721,7 +59273,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L33) *** @@ -68735,7 +59287,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L23) *** @@ -68749,7 +59301,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L21) *** @@ -68763,7 +59315,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L25) *** @@ -68777,7 +59329,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L27) *** @@ -68791,7 +59343,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -68815,7 +59367,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L160) *** @@ -68833,7 +59385,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -68853,7 +59405,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -68871,7 +59423,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L177) *** @@ -68889,7 +59441,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L124) *** @@ -68913,7 +59465,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L107) *** @@ -68927,7 +59479,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -68963,7 +59515,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L70) *** @@ -68985,7 +59537,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -69009,7 +59561,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L128) *** @@ -69031,7 +59583,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L94) *** @@ -69055,7 +59607,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L146) *** @@ -69073,7 +59625,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L118) *** @@ -69095,7 +59647,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/chord_sheet_parser.ts#L173) *** @@ -69109,7 +59661,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -69129,7 +59681,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/parser/ultimate_guitar_parser.ts#L87) @@ -69204,7 +59756,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L62) @@ -69224,7 +59776,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L13) @@ -69244,7 +59796,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L27) @@ -69264,7 +59816,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L55) @@ -69284,7 +59836,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L34) @@ -69300,7 +59852,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L77) @@ -69316,7 +59868,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L76) @@ -69332,7 +59884,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L78) @@ -69348,7 +59900,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L75) @@ -69368,7 +59920,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L41) @@ -69388,7 +59940,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/constants.ts#L48) @@ -69518,7 +60070,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/index.ts#L75) @@ -69730,7 +60282,7 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/d805978198f509dfe0efce007e52383e71cc4e03/src/template_helpers.ts#L98) # Media @@ -69797,374 +60349,7 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/## ChordSheetJS [![Code Climate] (https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) - -A JavaScript library for parsing and formatting chord sheets - -**Contents** - -- [Installation](#installation) -- [How to ...?](#how-to-) -- [Supported ChordPro directives](#supported-chordpro-directives) -- [API docs](#api-docs) -- [Contributing](#_mediacontributingmd) - -### Installation - -#### Package managers - -`ChordSheetJS` is on npm, to install run: - -```bash -npm install chordsheetjs -``` - -Load with `import`: - -```javascript -import ChordSheetJS from 'chordsheetjs'; -``` - -or `require()`: - -```javascript -var ChordSheetJS = require('chordsheetjs').default; -``` - -#### Standalone bundle file - -If you're not using a build tool, you can download and use the `bundle.js` from the -[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): - -```html - - -``` - -### How to ...? - -#### Parse chord sheet - -##### Regular chord sheets - -```javascript -const chordSheet = ` - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.ChordsOverWordsParser(); -const song = parser.parse(chordSheet); -``` - -##### Ultimate Guitar chord sheets - -```javascript -const chordSheet = ` -[Chorus] - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.UltimateGuitarParser(); -const song = parser.parse(chordSheet); -``` - -##### Chord pro format - -```javascript -const chordSheet = ` -{title: Let it be} -{subtitle: ChordSheetJS example version} - -{start_of_chorus: Chorus} -Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be -[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] -{end_of_chorus}`.substring(1); - -const parser = new ChordSheetJS.ChordProParser(); -const song = parser.parse(chordSheet); -``` - -#### Display a parsed sheet - -##### Plain text format - -```javascript -const formatter = new ChordSheetJS.TextFormatter(); -const disp = formatter.format(song); -``` - -##### HTML format - -###### Table-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlTableFormatter(); -const disp = formatter.format(song); -``` - -###### Div-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlDivFormatter(); -const disp = formatter.format(song); -``` - -##### Chord pro format - -```javascript -const formatter = new ChordSheetJS.ChordProFormatter(); -const disp = formatter.format(song); -``` - -#### Serialize/deserialize - -Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by -third-party libraries. The serialized object can also be deserialized back into a `Song`. - -```javascript -const serializedSong = new ChordSheetSerializer().serialize(song); -const deserialized = new ChordSheetSerializer().deserialize(serializedSong); -``` - -#### Add styling - -The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: - -```javascript -HtmlTableFormatter.cssString(); -// .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssString('.chordSheetViewer'); -// .chordSheetViewer .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssObject(); -// '.paragraph': { -// marginBottom: '1em' -// } -``` - -#### Parsing and modifying chords - -```javascript -import { Chord } from 'chordsheetjs'; -``` - -##### Parse - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -``` - -Parse numeric chords (Nashville system): - -```javascript -const chord = Chord.parse('b1sus4/#3'); -``` - -##### Display with #toString - -Use #toString() to convert the chord to a chord string (eg Dsus/F#) - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -chord.toString(); // --> "Ebsus4/Bb" -``` - -##### Clone - -```javascript -var chord2 = chord.clone(); -``` - -##### Normalize - -Normalizes keys B#, E#, Cb and Fb to C, F, B and E - -```javascript -const chord = Chord.parse('E#/B#'); -normalizedChord = chord.normalize(); -normalizedChord.toString(); // --> "F/C" -``` - -##### ~~Switch modifier~~ - -***Deprecated*** - -Convert # to b and vice versa - -```javascript -const chord = parseChord('Eb/Bb'); -const chord2 = chord.switchModifier(); -chord2.toString(); // --> "D#/A#" -``` - -##### Use specific modifier - -Set the chord to a specific modifier (# or b) - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('#'); -chord2.toString(); // --> "D#/A#" -``` - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('b'); -chord2.toString(); // --> "Eb/Bb" -``` - -##### Transpose up - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeUp(); -chord2.toString(); // -> "E/B" -``` - -##### Transpose down - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeDown(); -chord2.toString(); // -> "D/A" -``` - -##### Transpose - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(4); -chord2.toString(); // -> "E/G#" -``` - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(-4); -chord2.toString(); // -> "Ab/C" -``` - -##### Convert numeric chord to chord symbol - -```javascript -const numericChord = Chord.parse('2/4'); -const chordSymbol = numericChord.toChordSymbol('E'); -chordSymbol.toString(); // -> "F#/A" -``` - -### Supported ChordPro directives - -All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually -use those to change the generated output. - -:heavy_check_mark: = supported - -:clock2: = will be supported in a future version - -:heavy_multiplication_x: = currently no plans to support it in the near future - -#### Meta-data directives - -| Directive | Support | -|:---------------- |:------------------:| -| title (short: t) | :heavy_check_mark: | -| subtitle | :heavy_check_mark: | -| artist | :heavy_check_mark: | -| composer | :heavy_check_mark: | -| lyricist | :heavy_check_mark: | -| copyright | :heavy_check_mark: | -| album | :heavy_check_mark: | -| year | :heavy_check_mark: | -| key | :heavy_check_mark: | -| time | :heavy_check_mark: | -| tempo | :heavy_check_mark: | -| duration | :heavy_check_mark: | -| capo | :heavy_check_mark: | -| meta | :heavy_check_mark: | - -#### Formatting directives - -| Directive | Support | -|:-------------------------- |:------------------------:| -| comment (short: c) | :heavy_check_mark: | -| comment_italic (short: ci) | :heavy_multiplication_x: | -| comment_box (short: cb) | :heavy_multiplication_x: | -| chorus | :heavy_multiplication_x: | -| image | :heavy_multiplication_x: | - -#### Environment directives - -| Directive | Support | -|:---------------------------- |:------------------:| -| start_of_chorus (short: soc) | :heavy_check_mark: | -| end_of_chorus (short: eoc) | :heavy_check_mark: | -| start_of_verse | :heavy_check_mark: | -| end_of_verse | :heavy_check_mark: | -| start_of_tab (short: sot) | :heavy_check_mark: | -| end_of_tab (short: eot) | :heavy_check_mark: | -| start_of_grid | :heavy_check_mark: | -| end_of_grid | :heavy_check_mark: | - -#### Chord diagrams - -| Directive | Support | -|:--------- |:------------------:| -| define | :heavy_check_mark: | -| chord | :heavy_check_mark: | - -#### Fonts, sizes and colours - -| Directive | Support | -|:----------- |:------------------------:| -| textfont | :heavy_check_mark: | -| textsize | :heavy_check_mark: | -| textcolour | :heavy_check_mark: | -| chordfont | :heavy_check_mark: | -| chordsize | :heavy_check_mark: | -| chordcolour | :heavy_check_mark: | -| tabfont | :heavy_multiplication_x: | -| tabsize | :heavy_multiplication_x: | -| tabcolour | :heavy_multiplication_x: | - -#### Output related directives - -| Directive | Support | -|:------------------------------ |:------------------------:| -| new_page (short: np) | :heavy_multiplication_x: | -| new_physical_page (short: npp) | :heavy_multiplication_x: | -| column_break (short: cb) | :heavy_multiplication_x: | -| grid (short: g) | :heavy_multiplication_x: | -| no_grid (short: ng) | :heavy_multiplication_x: | -| titles | :heavy_multiplication_x: | -| columns (short: col) | :heavy_multiplication_x: | - -#### Custom extensions - -| Directive | Support | -|:--------- |:------------------:| -| x_ | :heavy_check_mark: | - -### API docs - -Note: all classes, methods and constants that are documented here can be considered public API and will only be -subject to breaking changes between major versions. - -# Classes - - - -[**chordsheetjs**](#readmemd) • **Docs** +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes[**chordsheetjs**](#readmemd) • **Docs** *** @@ -79245,7 +69430,374 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes[**chordsheetjs**](#readmemd) • **Docs** +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/## ChordSheetJS [![Code Climate] (https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) + +A JavaScript library for parsing and formatting chord sheets + +**Contents** + +- [Installation](#installation) +- [How to ...?](#how-to-) +- [Supported ChordPro directives](#supported-chordpro-directives) +- [API docs](#api-docs) +- [Contributing](#_mediacontributingmd) + +### Installation + +#### Package managers + +`ChordSheetJS` is on npm, to install run: + +```bash +npm install chordsheetjs +``` + +Load with `import`: + +```javascript +import ChordSheetJS from 'chordsheetjs'; +``` + +or `require()`: + +```javascript +var ChordSheetJS = require('chordsheetjs').default; +``` + +#### Standalone bundle file + +If you're not using a build tool, you can download and use the `bundle.js` from the +[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): + +```html + + +``` + +### How to ...? + +#### Parse chord sheet + +##### Regular chord sheets + +```javascript +const chordSheet = ` + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.ChordsOverWordsParser(); +const song = parser.parse(chordSheet); +``` + +##### Ultimate Guitar chord sheets + +```javascript +const chordSheet = ` +[Chorus] + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.UltimateGuitarParser(); +const song = parser.parse(chordSheet); +``` + +##### Chord pro format + +```javascript +const chordSheet = ` +{title: Let it be} +{subtitle: ChordSheetJS example version} + +{start_of_chorus: Chorus} +Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be +[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] +{end_of_chorus}`.substring(1); + +const parser = new ChordSheetJS.ChordProParser(); +const song = parser.parse(chordSheet); +``` + +#### Display a parsed sheet + +##### Plain text format + +```javascript +const formatter = new ChordSheetJS.TextFormatter(); +const disp = formatter.format(song); +``` + +##### HTML format + +###### Table-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlTableFormatter(); +const disp = formatter.format(song); +``` + +###### Div-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlDivFormatter(); +const disp = formatter.format(song); +``` + +##### Chord pro format + +```javascript +const formatter = new ChordSheetJS.ChordProFormatter(); +const disp = formatter.format(song); +``` + +#### Serialize/deserialize + +Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by +third-party libraries. The serialized object can also be deserialized back into a `Song`. + +```javascript +const serializedSong = new ChordSheetSerializer().serialize(song); +const deserialized = new ChordSheetSerializer().deserialize(serializedSong); +``` + +#### Add styling + +The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: + +```javascript +HtmlTableFormatter.cssString(); +// .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssString('.chordSheetViewer'); +// .chordSheetViewer .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssObject(); +// '.paragraph': { +// marginBottom: '1em' +// } +``` + +#### Parsing and modifying chords + +```javascript +import { Chord } from 'chordsheetjs'; +``` + +##### Parse + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +``` + +Parse numeric chords (Nashville system): + +```javascript +const chord = Chord.parse('b1sus4/#3'); +``` + +##### Display with #toString + +Use #toString() to convert the chord to a chord string (eg Dsus/F#) + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +chord.toString(); // --> "Ebsus4/Bb" +``` + +##### Clone + +```javascript +var chord2 = chord.clone(); +``` + +##### Normalize + +Normalizes keys B#, E#, Cb and Fb to C, F, B and E + +```javascript +const chord = Chord.parse('E#/B#'); +normalizedChord = chord.normalize(); +normalizedChord.toString(); // --> "F/C" +``` + +##### ~~Switch modifier~~ + +***Deprecated*** + +Convert # to b and vice versa + +```javascript +const chord = parseChord('Eb/Bb'); +const chord2 = chord.switchModifier(); +chord2.toString(); // --> "D#/A#" +``` + +##### Use specific modifier + +Set the chord to a specific modifier (# or b) + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('#'); +chord2.toString(); // --> "D#/A#" +``` + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('b'); +chord2.toString(); // --> "Eb/Bb" +``` + +##### Transpose up + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeUp(); +chord2.toString(); // -> "E/B" +``` + +##### Transpose down + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeDown(); +chord2.toString(); // -> "D/A" +``` + +##### Transpose + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(4); +chord2.toString(); // -> "E/G#" +``` + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(-4); +chord2.toString(); // -> "Ab/C" +``` + +##### Convert numeric chord to chord symbol + +```javascript +const numericChord = Chord.parse('2/4'); +const chordSymbol = numericChord.toChordSymbol('E'); +chordSymbol.toString(); // -> "F#/A" +``` + +### Supported ChordPro directives + +All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually +use those to change the generated output. + +:heavy_check_mark: = supported + +:clock2: = will be supported in a future version + +:heavy_multiplication_x: = currently no plans to support it in the near future + +#### Meta-data directives + +| Directive | Support | +|:---------------- |:------------------:| +| title (short: t) | :heavy_check_mark: | +| subtitle | :heavy_check_mark: | +| artist | :heavy_check_mark: | +| composer | :heavy_check_mark: | +| lyricist | :heavy_check_mark: | +| copyright | :heavy_check_mark: | +| album | :heavy_check_mark: | +| year | :heavy_check_mark: | +| key | :heavy_check_mark: | +| time | :heavy_check_mark: | +| tempo | :heavy_check_mark: | +| duration | :heavy_check_mark: | +| capo | :heavy_check_mark: | +| meta | :heavy_check_mark: | + +#### Formatting directives + +| Directive | Support | +|:-------------------------- |:------------------------:| +| comment (short: c) | :heavy_check_mark: | +| comment_italic (short: ci) | :heavy_multiplication_x: | +| comment_box (short: cb) | :heavy_multiplication_x: | +| chorus | :heavy_multiplication_x: | +| image | :heavy_multiplication_x: | + +#### Environment directives + +| Directive | Support | +|:---------------------------- |:------------------:| +| start_of_chorus (short: soc) | :heavy_check_mark: | +| end_of_chorus (short: eoc) | :heavy_check_mark: | +| start_of_verse | :heavy_check_mark: | +| end_of_verse | :heavy_check_mark: | +| start_of_tab (short: sot) | :heavy_check_mark: | +| end_of_tab (short: eot) | :heavy_check_mark: | +| start_of_grid | :heavy_check_mark: | +| end_of_grid | :heavy_check_mark: | + +#### Chord diagrams + +| Directive | Support | +|:--------- |:------------------:| +| define | :heavy_check_mark: | +| chord | :heavy_check_mark: | + +#### Fonts, sizes and colours + +| Directive | Support | +|:----------- |:------------------------:| +| textfont | :heavy_check_mark: | +| textsize | :heavy_check_mark: | +| textcolour | :heavy_check_mark: | +| chordfont | :heavy_check_mark: | +| chordsize | :heavy_check_mark: | +| chordcolour | :heavy_check_mark: | +| tabfont | :heavy_multiplication_x: | +| tabsize | :heavy_multiplication_x: | +| tabcolour | :heavy_multiplication_x: | + +#### Output related directives + +| Directive | Support | +|:------------------------------ |:------------------------:| +| new_page (short: np) | :heavy_multiplication_x: | +| new_physical_page (short: npp) | :heavy_multiplication_x: | +| column_break (short: cb) | :heavy_multiplication_x: | +| grid (short: g) | :heavy_multiplication_x: | +| no_grid (short: ng) | :heavy_multiplication_x: | +| titles | :heavy_multiplication_x: | +| columns (short: col) | :heavy_multiplication_x: | + +#### Custom extensions + +| Directive | Support | +|:--------- |:------------------:| +| x_ | :heavy_check_mark: | + +### API docs + +Note: all classes, methods and constants that are documented here can be considered public API and will only be +subject to breaking changes between major versions. + +# Classes + + + +[**chordsheetjs**](#readmemd) • **Docs** *** @@ -79291,7 +69843,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L344) +[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L344) ### Properties @@ -79305,7 +69857,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L24) +[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L24) *** @@ -79319,7 +69871,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L26) +[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L26) *** @@ -79333,7 +69885,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L28) +[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L28) ### Methods @@ -79349,7 +69901,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L60) +[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L60) *** @@ -79367,7 +69919,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L374) +[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L374) *** @@ -79383,7 +69935,7 @@ Determines whether the chord is a chord solfege ##### Defined in -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L160) +[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L160) *** @@ -79399,7 +69951,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L110) +[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L110) *** @@ -79413,7 +69965,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L432) +[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L432) *** @@ -79429,7 +69981,7 @@ Determines whether the chord is a numeral ##### Defined in -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L246) +[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L246) *** @@ -79445,7 +69997,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L227) +[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L227) *** @@ -79459,7 +70011,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L436) +[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L436) *** @@ -79510,7 +70062,7 @@ the normalized chord ##### Defined in -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L294) +[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L294) *** @@ -79528,7 +70080,7 @@ the normalized chord ##### Defined in -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L442) +[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L442) *** @@ -79555,7 +70107,7 @@ the chord solfege ##### Defined in -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L122) +[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L122) *** @@ -79584,7 +70136,7 @@ the chord solfege string ##### Defined in -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L152) +[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L152) *** @@ -79611,7 +70163,7 @@ the chord symbol ##### Defined in -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L72) +[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L72) *** @@ -79640,7 +70192,7 @@ the chord symbol string ##### Defined in -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L102) +[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L102) *** @@ -79665,7 +70217,7 @@ the numeral chord ##### Defined in -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L194) +[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L194) *** @@ -79692,7 +70244,7 @@ the numeral chord string ##### Defined in -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L219) +[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L219) *** @@ -79717,7 +70269,7 @@ the numeric chord ##### Defined in -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L170) +[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L170) *** @@ -79744,7 +70296,7 @@ the numeric chord string ##### Defined in -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L238) +[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L238) *** @@ -79773,7 +70325,7 @@ the chord string ##### Defined in -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L257) +[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L257) *** @@ -79797,7 +70349,7 @@ the new, transposed chord ##### Defined in -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L340) +[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L340) *** @@ -79815,7 +70367,7 @@ the new, transposed chord ##### Defined in -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L331) +[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L331) *** @@ -79833,7 +70385,7 @@ the new, transposed chord ##### Defined in -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L323) +[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L323) *** @@ -79857,7 +70409,7 @@ the new, changed chord ##### Defined in -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L315) +[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L315) *** @@ -79883,7 +70435,7 @@ the new, changed chord ##### Defined in -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L407) +[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L407) *** @@ -79911,7 +70463,7 @@ the new, changed chord ##### Defined in -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L380) +[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L380) *** @@ -79934,7 +70486,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L36) +[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L36) *** @@ -79952,7 +70504,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L44) +[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord.ts#L44) @@ -79996,7 +70548,7 @@ A chord definitions overrides a previous chord definition for the exact same cho ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L47) +[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L47) ### Properties @@ -80009,7 +70561,7 @@ The offset must be 1 or higher. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L24) +[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L24) *** @@ -80026,7 +70578,7 @@ Note that the values -, x, X, and N are used to designate a string without finge ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L45) +[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L45) *** @@ -80042,7 +70594,7 @@ the topmost fret position is 1. With base-fret 3, fret position 1 indicates the ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L34) +[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L34) *** @@ -80054,7 +70606,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L17) +[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L17) ### Methods @@ -80068,7 +70620,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L54) +[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/chord_definition.ts#L54) @@ -80110,7 +70662,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -80120,7 +70672,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -80130,7 +70682,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -80140,7 +70692,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -80158,7 +70710,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -80174,7 +70726,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -80190,7 +70742,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -80214,7 +70766,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -80232,7 +70784,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -80250,7 +70802,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -80264,7 +70816,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -80288,7 +70840,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -80306,7 +70858,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -80348,7 +70900,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) ### Properties @@ -80362,7 +70914,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) ### Methods @@ -80386,7 +70938,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L24) *** @@ -80404,7 +70956,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L132) *** @@ -80422,7 +70974,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L139) *** @@ -80440,7 +70992,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L158) *** @@ -80458,7 +71010,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L162) *** @@ -80476,7 +71028,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L112) *** @@ -80494,7 +71046,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L104) *** @@ -80514,7 +71066,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L38) *** @@ -80534,7 +71086,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L32) *** @@ -80554,7 +71106,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L62) *** @@ -80572,7 +71124,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L124) *** @@ -80590,7 +71142,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L78) *** @@ -80608,7 +71160,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chord_pro_formatter.ts#L96) @@ -80640,7 +71192,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -80660,7 +71212,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -80692,7 +71244,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_pro_parser.ts#L36) @@ -80741,7 +71293,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -80751,7 +71303,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L31) *** @@ -80761,7 +71313,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L35) *** @@ -80771,7 +71323,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L37) *** @@ -80781,7 +71333,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L33) *** @@ -80791,7 +71343,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L23) *** @@ -80801,7 +71353,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L21) *** @@ -80811,7 +71363,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L25) *** @@ -80821,7 +71373,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L27) *** @@ -80831,7 +71383,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -80851,7 +71403,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L160) *** @@ -80865,7 +71417,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L82) *** @@ -80879,7 +71431,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L177) *** @@ -80893,7 +71445,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L124) *** @@ -80913,7 +71465,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L107) *** @@ -80945,7 +71497,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L70) *** @@ -80963,7 +71515,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L84) *** @@ -80983,7 +71535,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L128) *** @@ -81001,7 +71553,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L94) *** @@ -81021,7 +71573,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L146) *** @@ -81035,7 +71587,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L118) *** @@ -81053,7 +71605,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L173) @@ -81085,7 +71637,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L40) *** @@ -81095,7 +71647,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L42) ### Methods @@ -81119,7 +71671,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L151) *** @@ -81137,7 +71689,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L156) *** @@ -81155,7 +71707,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L201) *** @@ -81173,7 +71725,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L184) *** @@ -81191,7 +71743,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L234) *** @@ -81209,7 +71761,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L259) *** @@ -81227,7 +71779,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L191) *** @@ -81245,7 +71797,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L213) *** @@ -81263,7 +71815,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L239) *** @@ -81286,7 +71838,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L49) *** @@ -81304,7 +71856,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L91) *** @@ -81342,7 +71894,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L114) *** @@ -81360,7 +71912,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L142) *** @@ -81378,7 +71930,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L138) *** @@ -81396,7 +71948,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L63) *** @@ -81414,7 +71966,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L56) *** @@ -81432,7 +71984,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L134) *** @@ -81450,7 +72002,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L100) *** @@ -81468,7 +72020,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet_serializer.ts#L124) @@ -81510,7 +72062,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) ### Properties @@ -81524,7 +72076,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) *** @@ -81534,7 +72086,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -81554,7 +72106,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -81578,7 +72130,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -81592,7 +72144,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -81614,7 +72166,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -81636,7 +72188,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -81656,7 +72208,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -81676,7 +72228,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -81696,7 +72248,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -81718,7 +72270,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -81738,7 +72290,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -81752,7 +72304,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -81772,7 +72324,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/chords_over_words_formatter.ts#L114) @@ -81839,7 +72391,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -81859,7 +72411,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -81891,7 +72443,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chords_over_words_parser.ts#L71) @@ -81921,7 +72473,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L7) ### Properties @@ -81931,7 +72483,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L5) ### Methods @@ -81947,7 +72499,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L23) *** @@ -81963,7 +72515,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L15) *** @@ -81977,7 +72529,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/comment.ts#L27) @@ -82015,7 +72567,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -82029,7 +72581,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L6) *** @@ -82039,7 +72591,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -82053,7 +72605,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L4) *** @@ -82067,7 +72619,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L8) *** @@ -82077,7 +72629,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -82095,7 +72647,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -82119,7 +72671,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -82133,7 +72685,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/composite.ts#L21) @@ -82174,7 +72726,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) ### Properties @@ -82184,7 +72736,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) @@ -82226,7 +72778,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) ### Properties @@ -82240,7 +72792,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) ### Accessors @@ -82271,7 +72823,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L66) *** @@ -82291,7 +72843,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_div_formatter.ts#L44) *** @@ -82311,7 +72863,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -82345,7 +72897,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L50) *** @@ -82373,7 +72925,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L26) @@ -82420,7 +72972,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) ### Properties @@ -82434,7 +72986,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) ### Accessors @@ -82461,7 +73013,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L66) *** @@ -82477,7 +73029,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L70) *** @@ -82493,7 +73045,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L72) ### Methods @@ -82523,7 +73075,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L50) *** @@ -82547,7 +73099,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L26) @@ -82590,7 +73142,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) ### Properties @@ -82604,7 +73156,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) ### Accessors @@ -82635,7 +73187,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L66) *** @@ -82655,7 +73207,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_table_formatter.ts#L45) *** @@ -82675,7 +73227,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -82709,7 +73261,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L50) *** @@ -82737,7 +73289,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/html_formatter.ts#L26) @@ -82789,7 +73341,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L249) ### Properties @@ -82803,7 +73355,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L51) *** @@ -82817,7 +73369,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L70) *** @@ -82831,7 +73383,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L55) *** @@ -82845,7 +73397,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L53) *** @@ -82855,7 +73407,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L74) *** @@ -82869,7 +73421,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L76) *** @@ -82883,7 +73435,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L72) *** @@ -82897,7 +73449,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L57) ### Accessors @@ -82913,7 +73465,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L285) *** @@ -82929,7 +73481,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L519) *** @@ -82945,7 +73497,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L490) *** @@ -82961,7 +73513,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L301) *** @@ -82977,7 +73529,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L305) *** @@ -82993,7 +73545,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L59) ### Methods @@ -83007,7 +73559,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L595) *** @@ -83021,7 +73573,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L603) *** @@ -83039,7 +73591,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L558) *** @@ -83053,7 +73605,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L317) *** @@ -83071,7 +73623,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L280) *** @@ -83089,7 +73641,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L410) *** @@ -83107,7 +73659,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L390) *** @@ -83121,7 +73673,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L402) *** @@ -83135,7 +73687,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L398) *** @@ -83149,7 +73701,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L293) *** @@ -83163,7 +73715,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L406) *** @@ -83177,7 +73729,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L394) *** @@ -83191,7 +73743,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L297) *** @@ -83205,7 +73757,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L630) *** @@ -83223,7 +73775,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L644) *** @@ -83241,7 +73793,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L611) *** @@ -83259,7 +73811,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L362) *** @@ -83277,7 +73829,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L386) *** @@ -83295,7 +73847,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L342) *** @@ -83313,7 +73865,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L382) *** @@ -83327,7 +73879,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L309) *** @@ -83345,7 +73897,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L456) *** @@ -83363,7 +73915,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L476) *** @@ -83381,7 +73933,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L431) *** @@ -83399,7 +73951,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L452) *** @@ -83423,7 +73975,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L480) *** @@ -83441,7 +73993,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L544) *** @@ -83455,7 +74007,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L582) *** @@ -83469,7 +74021,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L568) *** @@ -83487,7 +74039,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L625) *** @@ -83515,7 +74067,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L245) *** @@ -83535,7 +74087,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L419) *** @@ -83555,7 +74107,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L152) *** @@ -83577,7 +74129,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L193) *** @@ -83599,7 +74151,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L161) *** @@ -83617,7 +74169,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L78) *** @@ -83637,7 +74189,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L93) *** @@ -83655,7 +74207,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L209) *** @@ -83681,7 +74233,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L108) *** @@ -83699,7 +74251,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L617) *** @@ -83723,7 +74275,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L176) *** @@ -83741,7 +74293,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L235) *** @@ -83759,7 +74311,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L217) *** @@ -83777,7 +74329,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/key.ts#L225) @@ -83811,7 +74363,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L62) ### Properties @@ -83825,7 +74377,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L60) *** @@ -83835,7 +74387,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L38) *** @@ -83847,7 +74399,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L29) *** @@ -83857,7 +74409,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L40) *** @@ -83867,7 +74419,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L44) *** @@ -83881,7 +74433,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L52) *** @@ -83891,7 +74443,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L42) *** @@ -83904,7 +74456,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L36) ### Accessors @@ -83920,7 +74472,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L223) ### Methods @@ -83940,7 +74492,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L174) *** @@ -83958,7 +74510,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L207) *** @@ -83980,7 +74532,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L83) *** @@ -84000,7 +74552,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L201) *** @@ -84018,7 +74570,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L191) *** @@ -84034,7 +74586,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L107) *** @@ -84048,7 +74600,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L185) *** @@ -84066,7 +74618,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L170) *** @@ -84082,7 +74634,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L99) *** @@ -84098,7 +74650,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L129) *** @@ -84114,7 +74666,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L137) *** @@ -84130,7 +74682,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L71) *** @@ -84146,7 +74698,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L145) *** @@ -84160,7 +74712,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L75) *** @@ -84174,7 +74726,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L241) *** @@ -84188,7 +74740,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L237) *** @@ -84204,7 +74756,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L153) *** @@ -84220,7 +74772,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L161) *** @@ -84238,7 +74790,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L196) *** @@ -84256,7 +74808,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L111) *** @@ -84278,7 +74830,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/line.ts#L213) @@ -84314,7 +74866,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -84328,7 +74880,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L6) *** @@ -84342,7 +74894,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L4) *** @@ -84356,7 +74908,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L8) *** @@ -84366,7 +74918,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -84384,7 +74936,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -84402,7 +74954,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -84416,7 +74968,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/literal.ts#L15) @@ -84459,7 +75011,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L28) ### Properties @@ -84469,7 +75021,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -84489,7 +75041,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -84509,7 +75061,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -84529,7 +75081,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -84549,7 +75101,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -84569,7 +75121,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -84589,7 +75141,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -84609,7 +75161,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -84629,7 +75181,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -84649,7 +75201,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -84669,7 +75221,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -84689,7 +75241,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -84709,7 +75261,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -84729,7 +75281,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -84749,7 +75301,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L46) *** @@ -84763,7 +75315,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L178) *** @@ -84781,7 +75333,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L174) *** @@ -84799,7 +75351,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L42) *** @@ -84840,7 +75392,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L109) *** @@ -84858,7 +75410,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L150) *** @@ -84880,7 +75432,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L78) *** @@ -84902,7 +75454,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L82) *** @@ -84920,7 +75472,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L36) *** @@ -84938,7 +75490,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L138) *** @@ -84958,7 +75510,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata.ts#L70) @@ -84994,7 +75546,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -85012,7 +75564,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L52) *** @@ -85031,7 +75583,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L68) *** @@ -85050,7 +75602,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -85068,7 +75620,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L18) *** @@ -85088,7 +75640,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L103) *** @@ -85102,7 +75654,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L107) *** @@ -85123,7 +75675,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/paragraph.ts#L28) @@ -85157,7 +75709,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/soft_line_break.ts#L2) @@ -85199,7 +75751,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L54) ### Properties @@ -85209,7 +75761,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L44) *** @@ -85219,7 +75771,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L46) *** @@ -85233,7 +75785,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L35) *** @@ -85246,7 +75798,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L42) *** @@ -85256,7 +75808,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L48) ### Accessors @@ -85276,7 +75828,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -85296,7 +75848,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -85317,7 +75869,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L64) *** @@ -85340,7 +75892,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L78) *** @@ -85360,7 +75912,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -85380,7 +75932,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -85400,7 +75952,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -85420,7 +75972,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -85438,7 +75990,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L156) *** @@ -85458,7 +76010,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -85478,7 +76030,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -85498,7 +76050,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L148) *** @@ -85518,7 +76070,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -85538,7 +76090,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -85558,7 +76110,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -85578,7 +76130,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -85598,7 +76150,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -85616,7 +76168,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L380) *** @@ -85643,7 +76195,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L304) *** @@ -85672,7 +76224,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L357) *** @@ -85690,7 +76242,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L186) *** @@ -85708,7 +76260,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L417) *** @@ -85733,7 +76285,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L453) *** @@ -85751,7 +76303,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L427) *** @@ -85773,7 +76325,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L194) *** @@ -85795,7 +76347,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L198) *** @@ -85813,7 +76365,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L164) *** @@ -85850,7 +76402,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L398) *** @@ -85887,7 +76439,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L485) *** @@ -85901,7 +76453,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L332) *** @@ -85919,7 +76471,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L86) *** @@ -85947,7 +76499,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L225) *** @@ -85975,7 +76527,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L211) *** @@ -85995,7 +76547,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L190) *** @@ -86030,7 +76582,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L252) *** @@ -86061,7 +76613,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L292) *** @@ -86092,7 +76644,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L279) *** @@ -86116,7 +76668,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/song.ts#L322) @@ -86158,7 +76710,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L412) ### Properties @@ -86168,7 +76720,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L402) *** @@ -86178,7 +76730,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L406) *** @@ -86188,7 +76740,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L404) *** @@ -86198,7 +76750,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L408) *** @@ -86208,7 +76760,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L410) *** @@ -86222,7 +76774,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L6) *** @@ -86236,7 +76788,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L4) *** @@ -86250,7 +76802,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -86282,7 +76834,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L491) *** @@ -86302,7 +76854,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L500) *** @@ -86334,7 +76886,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L513) ### Methods @@ -86356,7 +76908,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L555) *** @@ -86375,7 +76927,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L539) *** @@ -86391,7 +76943,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L521) *** @@ -86405,7 +76957,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L477) *** @@ -86421,7 +76973,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L547) *** @@ -86437,7 +76989,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L529) *** @@ -86451,7 +77003,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L465) *** @@ -86465,7 +77017,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L473) *** @@ -86479,7 +77031,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L469) *** @@ -86499,7 +77051,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L563) *** @@ -86515,7 +77067,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L559) *** @@ -86533,7 +77085,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L437) *** @@ -86551,7 +77103,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L455) *** @@ -86571,7 +77123,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/tag.ts#L445) @@ -86607,7 +77159,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -86621,7 +77173,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L6) *** @@ -86631,7 +77183,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -86645,7 +77197,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L4) *** @@ -86659,7 +77211,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/ast_component.ts#L8) *** @@ -86669,7 +77221,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -86679,7 +77231,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -86689,7 +77241,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -86707,7 +77259,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -86741,7 +77293,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -86763,7 +77315,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -86783,7 +77335,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -86803,7 +77355,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -86817,7 +77369,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -86859,7 +77411,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L26) ### Properties @@ -86873,7 +77425,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/formatter.ts#L7) *** @@ -86883,7 +77435,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L17) ### Methods @@ -86903,7 +77455,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L102) *** @@ -86927,7 +77479,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L24) *** @@ -86941,7 +77493,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L33) *** @@ -86963,7 +77515,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L161) *** @@ -86985,7 +77537,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L129) *** @@ -87005,7 +77557,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L66) *** @@ -87025,7 +77577,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L142) *** @@ -87045,7 +77597,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L94) *** @@ -87067,7 +77619,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L150) *** @@ -87087,7 +77639,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L53) *** @@ -87101,7 +77653,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L44) *** @@ -87119,7 +77671,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L86) *** @@ -87137,7 +77689,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/formatter/text_formatter.ts#L78) @@ -87184,7 +77736,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -87198,7 +77750,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L31) *** @@ -87212,7 +77764,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L35) *** @@ -87222,7 +77774,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -87236,7 +77788,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L37) *** @@ -87250,7 +77802,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L33) *** @@ -87264,7 +77816,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L23) *** @@ -87278,7 +77830,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L21) *** @@ -87292,7 +77844,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L25) *** @@ -87306,7 +77858,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L27) *** @@ -87320,7 +77872,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -87344,7 +77896,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L160) *** @@ -87362,7 +77914,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -87382,7 +77934,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -87400,7 +77952,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L177) *** @@ -87418,7 +77970,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L124) *** @@ -87442,7 +77994,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L107) *** @@ -87456,7 +78008,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -87492,7 +78044,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L70) *** @@ -87514,7 +78066,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -87538,7 +78090,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L128) *** @@ -87560,7 +78112,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L94) *** @@ -87584,7 +78136,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L146) *** @@ -87602,7 +78154,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L118) *** @@ -87624,7 +78176,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/chord_sheet_parser.ts#L173) *** @@ -87638,7 +78190,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -87658,7 +78210,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/parser/ultimate_guitar_parser.ts#L87) @@ -87733,7 +78285,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L62) @@ -87753,7 +78305,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L13) @@ -87773,7 +78325,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L27) @@ -87793,7 +78345,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L55) @@ -87813,7 +78365,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L34) @@ -87829,7 +78381,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L77) @@ -87845,7 +78397,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L76) @@ -87861,7 +78413,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L78) @@ -87877,7 +78429,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L75) @@ -87897,7 +78449,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L41) @@ -87917,7 +78469,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/constants.ts#L48) @@ -88047,7 +78599,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/index.ts#L75) @@ -88259,7 +78811,7 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/956687aab3df1c6afbbb8917f52bff1df79e3487/src/template_helpers.ts#L98) # Media @@ -88326,373 +78878,7 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/## ChordSheetJS [![Code Climate] (https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) - -A JavaScript library for parsing and formatting chord sheets - -**Contents** - -- [Installation](#installation) -- [How to ...?](#how-to-) -- [Supported ChordPro directives](#supported-chordpro-directives) -- [API docs](#api-docs) -- [Contributing](#_mediacontributingmd) - -### Installation - -#### Package managers - -`ChordSheetJS` is on npm, to install run: - -```bash -npm install chordsheetjs -``` - -Load with `import`: - -```javascript -import ChordSheetJS from 'chordsheetjs'; -``` - -or `require()`: - -```javascript -var ChordSheetJS = require('chordsheetjs').default; -``` - -#### Standalone bundle file - -If you're not using a build tool, you can download and use the `bundle.js` from the -[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): - -```html - - -``` - -### How to ...? - -#### Parse chord sheet - -##### Regular chord sheets - -```javascript -const chordSheet = ` - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.ChordsOverWordsParser(); -const song = parser.parse(chordSheet); -``` - -##### Ultimate Guitar chord sheets - -```javascript -const chordSheet = ` -[Chorus] - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.UltimateGuitarParser(); -const song = parser.parse(chordSheet); -``` - -##### Chord pro format - -```javascript -const chordSheet = ` -{title: Let it be} -{subtitle: ChordSheetJS example version} - -{start_of_chorus: Chorus} -Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be -[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] -{end_of_chorus}`.substring(1); - -const parser = new ChordSheetJS.ChordProParser(); -const song = parser.parse(chordSheet); -``` - -#### Display a parsed sheet - -##### Plain text format - -```javascript -const formatter = new ChordSheetJS.TextFormatter(); -const disp = formatter.format(song); -``` - -##### HTML format - -###### Table-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlTableFormatter(); -const disp = formatter.format(song); -``` - -###### Div-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlDivFormatter(); -const disp = formatter.format(song); -``` - -##### Chord pro format - -```javascript -const formatter = new ChordSheetJS.ChordProFormatter(); -const disp = formatter.format(song); -``` - -#### Serialize/deserialize - -Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by -third-party libraries. The serialized object can also be deserialized back into a `Song`. - -```javascript -const serializedSong = new ChordSheetSerializer().serialize(song); -const deserialized = new ChordSheetSerializer().deserialize(serializedSong); -``` - -#### Add styling - -The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: - -```javascript -HtmlTableFormatter.cssString(); -// .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssString('.chordSheetViewer'); -// .chordSheetViewer .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssObject(); -// '.paragraph': { -// marginBottom: '1em' -// } -``` - -#### Parsing and modifying chords - -```javascript -import { Chord } from 'chordsheetjs'; -``` - -##### Parse - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -``` - -Parse numeric chords (Nashville system): - -```javascript -const chord = Chord.parse('b1sus4/#3'); -``` - -##### Display with #toString - -Use #toString() to convert the chord to a chord string (eg Dsus/F#) - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -chord.toString(); // --> "Ebsus4/Bb" -``` - -##### Clone - -```javascript -var chord2 = chord.clone(); -``` - -##### Normalize - -Normalizes keys B#, E#, Cb and Fb to C, F, B and E - -```javascript -const chord = Chord.parse('E#/B#'); -normalizedChord = chord.normalize(); -normalizedChord.toString(); // --> "F/C" -``` - -##### ~~Switch modifier~~ - -***Deprecated*** - -Convert # to b and vice versa - -```javascript -const chord = parseChord('Eb/Bb'); -const chord2 = chord.switchModifier(); -chord2.toString(); // --> "D#/A#" -``` - -##### Use specific modifier - -Set the chord to a specific modifier (# or b) - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('#'); -chord2.toString(); // --> "D#/A#" -``` - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('b'); -chord2.toString(); // --> "Eb/Bb" -``` - -##### Transpose up - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeUp(); -chord2.toString(); // -> "E/B" -``` - -##### Transpose down - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeDown(); -chord2.toString(); // -> "D/A" -``` - -##### Transpose - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(4); -chord2.toString(); // -> "E/G#" -``` - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(-4); -chord2.toString(); // -> "Ab/C" -``` - -##### Convert numeric chord to chord symbol - -```javascript -const numericChord = Chord.parse('2/4'); -const chordSymbol = numericChord.toChordSymbol('E'); -chordSymbol.toString(); // -> "F#/A" -``` - -### Supported ChordPro directives - -All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually -use those to change the generated output. - -:heavy_check_mark: = supported - -:clock2: = will be supported in a future version - -:heavy_multiplication_x: = currently no plans to support it in the near future - -#### Meta-data directives - -| Directive | Support | -|:---------------- |:------------------:| -| title (short: t) | :heavy_check_mark: | -| subtitle | :heavy_check_mark: | -| artist | :heavy_check_mark: | -| composer | :heavy_check_mark: | -| lyricist | :heavy_check_mark: | -| copyright | :heavy_check_mark: | -| album | :heavy_check_mark: | -| year | :heavy_check_mark: | -| key | :heavy_check_mark: | -| time | :heavy_check_mark: | -| tempo | :heavy_check_mark: | -| duration | :heavy_check_mark: | -| capo | :heavy_check_mark: | -| meta | :heavy_check_mark: | - -#### Formatting directives - -| Directive | Support | -|:-------------------------- |:------------------------:| -| comment (short: c) | :heavy_check_mark: | -| comment_italic (short: ci) | :heavy_multiplication_x: | -| comment_box (short: cb) | :heavy_multiplication_x: | -| chorus | :heavy_multiplication_x: | -| image | :heavy_multiplication_x: | - -#### Environment directives - -| Directive | Support | -|:---------------------------- |:------------------:| -| start_of_chorus (short: soc) | :heavy_check_mark: | -| end_of_chorus (short: eoc) | :heavy_check_mark: | -| start_of_verse | :heavy_check_mark: | -| end_of_verse | :heavy_check_mark: | -| start_of_tab (short: sot) | :heavy_check_mark: | -| end_of_tab (short: eot) | :heavy_check_mark: | -| start_of_grid | :heavy_check_mark: | -| end_of_grid | :heavy_check_mark: | - -#### Chord diagrams - -| Directive | Support | -|:--------- |:------------------:| -| define | :heavy_check_mark: | -| chord | :heavy_check_mark: | - -#### Fonts, sizes and colours - -| Directive | Support | -|:----------- |:------------------------:| -| textfont | :heavy_check_mark: | -| textsize | :heavy_check_mark: | -| textcolour | :heavy_check_mark: | -| chordfont | :heavy_check_mark: | -| chordsize | :heavy_check_mark: | -| chordcolour | :heavy_check_mark: | -| tabfont | :heavy_multiplication_x: | -| tabsize | :heavy_multiplication_x: | -| tabcolour | :heavy_multiplication_x: | - -#### Output related directives - -| Directive | Support | -|:------------------------------ |:------------------------:| -| new_page (short: np) | :heavy_multiplication_x: | -| new_physical_page (short: npp) | :heavy_multiplication_x: | -| column_break (short: cb) | :heavy_multiplication_x: | -| grid (short: g) | :heavy_multiplication_x: | -| no_grid (short: ng) | :heavy_multiplication_x: | -| titles | :heavy_multiplication_x: | -| columns (short: col) | :heavy_multiplication_x: | - -#### Custom extensions - -| Directive | Support | -|:--------- |:------------------:| -| x_ | :heavy_check_mark: | - -### API docs - -Note: all classes, methods and constants that are documented here can be considered public API and will only be -subject to breaking changes between major versions. - -# Classes - - - +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes [**chordsheetjs**](#readmemd) • **Docs** *** @@ -88739,7 +78925,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L344) +[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L344) ### Properties @@ -88753,7 +78939,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L24) +[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L24) *** @@ -88767,7 +78953,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L26) +[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L26) *** @@ -88781,7 +78967,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L28) +[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L28) ### Methods @@ -88797,7 +78983,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L60) +[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L60) *** @@ -88815,7 +79001,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L374) +[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L374) *** @@ -88831,7 +79017,7 @@ Determines whether the chord is a chord solfege ##### Defined in -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L160) +[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L160) *** @@ -88847,7 +79033,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L110) +[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L110) *** @@ -88861,7 +79047,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L432) +[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L432) *** @@ -88877,7 +79063,7 @@ Determines whether the chord is a numeral ##### Defined in -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L246) +[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L246) *** @@ -88893,7 +79079,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L227) +[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L227) *** @@ -88907,7 +79093,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L436) +[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L436) *** @@ -88958,7 +79144,7 @@ the normalized chord ##### Defined in -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L294) +[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L294) *** @@ -88976,7 +79162,7 @@ the normalized chord ##### Defined in -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L442) +[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L442) *** @@ -89003,7 +79189,7 @@ the chord solfege ##### Defined in -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L122) +[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L122) *** @@ -89032,7 +79218,7 @@ the chord solfege string ##### Defined in -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L152) +[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L152) *** @@ -89059,7 +79245,7 @@ the chord symbol ##### Defined in -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L72) +[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L72) *** @@ -89088,7 +79274,7 @@ the chord symbol string ##### Defined in -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L102) +[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L102) *** @@ -89113,7 +79299,7 @@ the numeral chord ##### Defined in -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L194) +[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L194) *** @@ -89140,7 +79326,7 @@ the numeral chord string ##### Defined in -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L219) +[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L219) *** @@ -89165,7 +79351,7 @@ the numeric chord ##### Defined in -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L170) +[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L170) *** @@ -89192,7 +79378,7 @@ the numeric chord string ##### Defined in -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L238) +[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L238) *** @@ -89221,7 +79407,7 @@ the chord string ##### Defined in -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L257) +[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L257) *** @@ -89245,7 +79431,7 @@ the new, transposed chord ##### Defined in -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L340) +[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L340) *** @@ -89263,7 +79449,7 @@ the new, transposed chord ##### Defined in -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L331) +[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L331) *** @@ -89281,7 +79467,7 @@ the new, transposed chord ##### Defined in -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L323) +[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L323) *** @@ -89305,7 +79491,7 @@ the new, changed chord ##### Defined in -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L315) +[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L315) *** @@ -89331,7 +79517,7 @@ the new, changed chord ##### Defined in -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L407) +[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L407) *** @@ -89359,7 +79545,7 @@ the new, changed chord ##### Defined in -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L380) +[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L380) *** @@ -89382,7 +79568,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L36) +[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L36) *** @@ -89400,7 +79586,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L44) +[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord.ts#L44) @@ -89444,7 +79630,7 @@ A chord definitions overrides a previous chord definition for the exact same cho ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L47) +[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L47) ### Properties @@ -89457,7 +79643,7 @@ The offset must be 1 or higher. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L24) +[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L24) *** @@ -89474,7 +79660,7 @@ Note that the values -, x, X, and N are used to designate a string without finge ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L45) +[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L45) *** @@ -89490,7 +79676,7 @@ the topmost fret position is 1. With base-fret 3, fret position 1 indicates the ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L34) +[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L34) *** @@ -89502,7 +79688,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L17) +[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L17) ### Methods @@ -89516,7 +79702,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L54) +[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/chord_definition.ts#L54) @@ -89558,7 +79744,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -89568,7 +79754,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -89578,7 +79764,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -89588,7 +79774,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -89606,7 +79792,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -89622,7 +79808,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -89638,7 +79824,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -89662,7 +79848,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -89680,7 +79866,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -89698,7 +79884,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -89712,7 +79898,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -89736,7 +79922,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -89754,7 +79940,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -89796,7 +79982,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) ### Properties @@ -89810,7 +79996,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) ### Methods @@ -89834,7 +80020,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L24) *** @@ -89852,7 +80038,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L132) *** @@ -89870,7 +80056,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L139) *** @@ -89888,7 +80074,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L158) *** @@ -89906,7 +80092,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L162) *** @@ -89924,7 +80110,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L112) *** @@ -89942,7 +80128,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L104) *** @@ -89962,7 +80148,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L38) *** @@ -89982,7 +80168,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L32) *** @@ -90002,7 +80188,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L62) *** @@ -90020,7 +80206,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L124) *** @@ -90038,7 +80224,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L78) *** @@ -90056,7 +80242,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chord_pro_formatter.ts#L96) @@ -90088,7 +80274,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -90108,7 +80294,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -90140,7 +80326,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_pro_parser.ts#L36) @@ -90189,7 +80375,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -90199,7 +80385,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L31) *** @@ -90209,7 +80395,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L35) *** @@ -90219,7 +80405,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L37) *** @@ -90229,7 +80415,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L33) *** @@ -90239,7 +80425,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L23) *** @@ -90249,7 +80435,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L21) *** @@ -90259,7 +80445,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L25) *** @@ -90269,7 +80455,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L27) *** @@ -90279,7 +80465,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -90299,7 +80485,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L160) *** @@ -90313,7 +80499,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L82) *** @@ -90327,7 +80513,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L177) *** @@ -90341,7 +80527,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L124) *** @@ -90361,7 +80547,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L107) *** @@ -90393,7 +80579,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L70) *** @@ -90411,7 +80597,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L84) *** @@ -90431,7 +80617,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L128) *** @@ -90449,7 +80635,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L94) *** @@ -90469,7 +80655,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L146) *** @@ -90483,7 +80669,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L118) *** @@ -90501,7 +80687,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L173) @@ -90533,7 +80719,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L40) *** @@ -90543,7 +80729,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L42) ### Methods @@ -90567,7 +80753,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L151) *** @@ -90585,7 +80771,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L156) *** @@ -90603,7 +80789,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L201) *** @@ -90621,7 +80807,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L184) *** @@ -90639,7 +80825,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L234) *** @@ -90657,7 +80843,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L259) *** @@ -90675,7 +80861,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L191) *** @@ -90693,7 +80879,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L213) *** @@ -90711,7 +80897,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L239) *** @@ -90734,7 +80920,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L49) *** @@ -90752,7 +80938,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L91) *** @@ -90790,7 +80976,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L114) *** @@ -90808,7 +80994,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L142) *** @@ -90826,7 +81012,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L138) *** @@ -90844,7 +81030,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L63) *** @@ -90862,7 +81048,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L56) *** @@ -90880,7 +81066,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L134) *** @@ -90898,7 +81084,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L100) *** @@ -90916,7 +81102,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet_serializer.ts#L124) @@ -90958,7 +81144,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) ### Properties @@ -90972,7 +81158,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) *** @@ -90982,7 +81168,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -91002,7 +81188,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -91026,7 +81212,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -91040,7 +81226,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -91062,7 +81248,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -91084,7 +81270,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -91104,7 +81290,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -91124,7 +81310,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -91144,7 +81330,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -91166,7 +81352,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -91186,7 +81372,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -91200,7 +81386,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -91220,7 +81406,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/chords_over_words_formatter.ts#L114) @@ -91287,7 +81473,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -91307,7 +81493,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -91339,7 +81525,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chords_over_words_parser.ts#L71) @@ -91369,7 +81555,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L7) ### Properties @@ -91379,7 +81565,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L5) ### Methods @@ -91395,7 +81581,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L23) *** @@ -91411,7 +81597,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L15) *** @@ -91425,7 +81611,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/comment.ts#L27) @@ -91463,7 +81649,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -91477,7 +81663,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L6) *** @@ -91487,7 +81673,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -91501,7 +81687,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L4) *** @@ -91515,7 +81701,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L8) *** @@ -91525,7 +81711,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -91543,7 +81729,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -91567,7 +81753,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -91581,7 +81767,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/composite.ts#L21) @@ -91622,7 +81808,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) ### Properties @@ -91632,7 +81818,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) @@ -91674,7 +81860,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) ### Properties @@ -91688,7 +81874,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) ### Accessors @@ -91719,7 +81905,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L66) *** @@ -91739,7 +81925,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_div_formatter.ts#L44) *** @@ -91759,7 +81945,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -91793,7 +81979,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L50) *** @@ -91821,7 +82007,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L26) @@ -91868,7 +82054,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) ### Properties @@ -91882,7 +82068,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) ### Accessors @@ -91909,7 +82095,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L66) *** @@ -91925,7 +82111,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L70) *** @@ -91941,7 +82127,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L72) ### Methods @@ -91971,7 +82157,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L50) *** @@ -91995,7 +82181,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L26) @@ -92038,7 +82224,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) ### Properties @@ -92052,7 +82238,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) ### Accessors @@ -92083,7 +82269,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L66) *** @@ -92103,7 +82289,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_table_formatter.ts#L45) *** @@ -92123,7 +82309,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -92157,7 +82343,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L50) *** @@ -92185,7 +82371,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/html_formatter.ts#L26) @@ -92237,7 +82423,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L249) ### Properties @@ -92251,7 +82437,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L51) *** @@ -92265,7 +82451,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L70) *** @@ -92279,7 +82465,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L55) *** @@ -92293,7 +82479,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L53) *** @@ -92303,7 +82489,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L74) *** @@ -92317,7 +82503,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L76) *** @@ -92331,7 +82517,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L72) *** @@ -92345,7 +82531,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L57) ### Accessors @@ -92361,7 +82547,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L285) *** @@ -92377,7 +82563,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L519) *** @@ -92393,7 +82579,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L490) *** @@ -92409,7 +82595,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L301) *** @@ -92425,7 +82611,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L305) *** @@ -92441,7 +82627,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L59) ### Methods @@ -92455,7 +82641,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L595) *** @@ -92469,7 +82655,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L603) *** @@ -92487,7 +82673,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L558) *** @@ -92501,7 +82687,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L317) *** @@ -92519,7 +82705,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L280) *** @@ -92537,7 +82723,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L410) *** @@ -92555,7 +82741,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L390) *** @@ -92569,7 +82755,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L402) *** @@ -92583,7 +82769,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L398) *** @@ -92597,7 +82783,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L293) *** @@ -92611,7 +82797,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L406) *** @@ -92625,7 +82811,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L394) *** @@ -92639,7 +82825,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L297) *** @@ -92653,7 +82839,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L630) *** @@ -92671,7 +82857,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L644) *** @@ -92689,7 +82875,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L611) *** @@ -92707,7 +82893,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L362) *** @@ -92725,7 +82911,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L386) *** @@ -92743,7 +82929,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L342) *** @@ -92761,7 +82947,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L382) *** @@ -92775,7 +82961,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L309) *** @@ -92793,7 +82979,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L456) *** @@ -92811,7 +82997,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L476) *** @@ -92829,7 +83015,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L431) *** @@ -92847,7 +83033,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L452) *** @@ -92871,7 +83057,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L480) *** @@ -92889,7 +83075,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L544) *** @@ -92903,7 +83089,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L582) *** @@ -92917,7 +83103,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L568) *** @@ -92935,7 +83121,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L625) *** @@ -92963,7 +83149,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L245) *** @@ -92983,7 +83169,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L419) *** @@ -93003,7 +83189,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L152) *** @@ -93025,7 +83211,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L193) *** @@ -93047,7 +83233,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L161) *** @@ -93065,7 +83251,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L78) *** @@ -93085,7 +83271,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L93) *** @@ -93103,7 +83289,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L209) *** @@ -93129,7 +83315,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L108) *** @@ -93147,7 +83333,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L617) *** @@ -93171,7 +83357,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L176) *** @@ -93189,7 +83375,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L235) *** @@ -93207,7 +83393,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L217) *** @@ -93225,7 +83411,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/key.ts#L225) @@ -93259,7 +83445,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L62) ### Properties @@ -93273,7 +83459,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L60) *** @@ -93283,7 +83469,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L38) *** @@ -93295,7 +83481,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L29) *** @@ -93305,7 +83491,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L40) *** @@ -93315,7 +83501,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L44) *** @@ -93329,7 +83515,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L52) *** @@ -93339,7 +83525,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L42) *** @@ -93352,7 +83538,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L36) ### Accessors @@ -93368,7 +83554,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L223) ### Methods @@ -93388,7 +83574,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L174) *** @@ -93406,7 +83592,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L207) *** @@ -93428,7 +83614,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L83) *** @@ -93448,7 +83634,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L201) *** @@ -93466,7 +83652,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L191) *** @@ -93482,7 +83668,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L107) *** @@ -93496,7 +83682,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L185) *** @@ -93514,7 +83700,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L170) *** @@ -93530,7 +83716,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L99) *** @@ -93546,7 +83732,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L129) *** @@ -93562,7 +83748,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L137) *** @@ -93578,7 +83764,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L71) *** @@ -93594,7 +83780,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L145) *** @@ -93608,7 +83794,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L75) *** @@ -93622,7 +83808,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L241) *** @@ -93636,7 +83822,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L237) *** @@ -93652,7 +83838,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L153) *** @@ -93668,7 +83854,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L161) *** @@ -93686,7 +83872,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L196) *** @@ -93704,7 +83890,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L111) *** @@ -93726,7 +83912,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/line.ts#L213) @@ -93762,7 +83948,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -93776,7 +83962,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L6) *** @@ -93790,7 +83976,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L4) *** @@ -93804,7 +83990,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L8) *** @@ -93814,7 +84000,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -93832,7 +84018,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -93850,7 +84036,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -93864,7 +84050,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/literal.ts#L15) @@ -93907,7 +84093,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L28) ### Properties @@ -93917,7 +84103,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -93937,7 +84123,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -93957,7 +84143,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -93977,7 +84163,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -93997,7 +84183,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -94017,7 +84203,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -94037,7 +84223,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -94057,7 +84243,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -94077,7 +84263,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -94097,7 +84283,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -94117,7 +84303,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -94137,7 +84323,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -94157,7 +84343,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -94177,7 +84363,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -94197,7 +84383,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L46) *** @@ -94211,7 +84397,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L178) *** @@ -94229,7 +84415,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L174) *** @@ -94247,7 +84433,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L42) *** @@ -94288,7 +84474,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L109) *** @@ -94306,7 +84492,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L150) *** @@ -94328,7 +84514,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L78) *** @@ -94350,7 +84536,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L82) *** @@ -94368,7 +84554,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L36) *** @@ -94386,7 +84572,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L138) *** @@ -94406,7 +84592,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata.ts#L70) @@ -94442,7 +84628,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -94460,7 +84646,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L52) *** @@ -94479,7 +84665,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L68) *** @@ -94498,7 +84684,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -94516,7 +84702,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L18) *** @@ -94536,7 +84722,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L103) *** @@ -94550,7 +84736,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L107) *** @@ -94571,7 +84757,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/paragraph.ts#L28) @@ -94605,7 +84791,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/soft_line_break.ts#L2) @@ -94647,7 +84833,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L54) ### Properties @@ -94657,7 +84843,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L44) *** @@ -94667,7 +84853,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L46) *** @@ -94681,7 +84867,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L35) *** @@ -94694,7 +84880,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L42) *** @@ -94704,7 +84890,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L48) ### Accessors @@ -94724,7 +84910,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -94744,7 +84930,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -94765,7 +84951,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L64) *** @@ -94788,7 +84974,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L78) *** @@ -94808,7 +84994,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -94828,7 +85014,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -94848,7 +85034,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -94868,7 +85054,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -94886,7 +85072,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L156) *** @@ -94906,7 +85092,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -94926,7 +85112,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -94946,7 +85132,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L148) *** @@ -94966,7 +85152,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -94986,7 +85172,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -95006,7 +85192,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -95026,7 +85212,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -95046,7 +85232,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -95064,7 +85250,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L380) *** @@ -95091,7 +85277,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L304) *** @@ -95120,7 +85306,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L357) *** @@ -95138,7 +85324,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L186) *** @@ -95156,7 +85342,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L417) *** @@ -95181,7 +85367,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L453) *** @@ -95199,7 +85385,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L427) *** @@ -95221,7 +85407,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L194) *** @@ -95243,7 +85429,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L198) *** @@ -95261,7 +85447,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L164) *** @@ -95298,7 +85484,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L398) *** @@ -95335,7 +85521,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L485) *** @@ -95349,7 +85535,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L332) *** @@ -95367,7 +85553,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L86) *** @@ -95395,7 +85581,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L225) *** @@ -95423,7 +85609,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L211) *** @@ -95443,7 +85629,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L190) *** @@ -95478,7 +85664,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L252) *** @@ -95509,7 +85695,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L292) *** @@ -95540,7 +85726,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L279) *** @@ -95564,7 +85750,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/song.ts#L322) @@ -95606,7 +85792,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L412) ### Properties @@ -95616,7 +85802,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L402) *** @@ -95626,7 +85812,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L406) *** @@ -95636,7 +85822,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L404) *** @@ -95646,7 +85832,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L408) *** @@ -95656,7 +85842,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L410) *** @@ -95670,7 +85856,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L6) *** @@ -95684,7 +85870,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L4) *** @@ -95698,7 +85884,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -95730,7 +85916,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L491) *** @@ -95750,7 +85936,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L500) *** @@ -95782,7 +85968,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L513) ### Methods @@ -95804,7 +85990,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L555) *** @@ -95823,7 +86009,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L539) *** @@ -95839,7 +86025,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L521) *** @@ -95853,7 +86039,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L477) *** @@ -95869,7 +86055,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L547) *** @@ -95885,7 +86071,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L529) *** @@ -95899,7 +86085,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L465) *** @@ -95913,7 +86099,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L473) *** @@ -95927,7 +86113,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L469) *** @@ -95947,7 +86133,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L563) *** @@ -95963,7 +86149,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L559) *** @@ -95981,7 +86167,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L437) *** @@ -95999,7 +86185,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L455) *** @@ -96019,7 +86205,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/tag.ts#L445) @@ -96055,7 +86241,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -96069,7 +86255,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L6) *** @@ -96079,7 +86265,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -96093,7 +86279,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L4) *** @@ -96107,7 +86293,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/ast_component.ts#L8) *** @@ -96117,7 +86303,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -96127,7 +86313,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -96137,7 +86323,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -96155,7 +86341,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -96189,7 +86375,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -96211,7 +86397,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -96231,7 +86417,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -96251,7 +86437,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -96265,7 +86451,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -96307,7 +86493,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L26) ### Properties @@ -96321,7 +86507,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/formatter.ts#L7) *** @@ -96331,7 +86517,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L17) ### Methods @@ -96351,7 +86537,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L102) *** @@ -96375,7 +86561,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L24) *** @@ -96389,7 +86575,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L33) *** @@ -96411,7 +86597,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L161) *** @@ -96433,7 +86619,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L129) *** @@ -96453,7 +86639,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L66) *** @@ -96473,7 +86659,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L142) *** @@ -96493,7 +86679,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L94) *** @@ -96515,7 +86701,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L150) *** @@ -96535,7 +86721,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L53) *** @@ -96549,7 +86735,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L44) *** @@ -96567,7 +86753,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L86) *** @@ -96585,7 +86771,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/formatter/text_formatter.ts#L78) @@ -96632,7 +86818,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -96646,7 +86832,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L31) *** @@ -96660,7 +86846,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L35) *** @@ -96670,7 +86856,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -96684,7 +86870,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L37) *** @@ -96698,7 +86884,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L33) *** @@ -96712,7 +86898,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L23) *** @@ -96726,7 +86912,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L21) *** @@ -96740,7 +86926,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L25) *** @@ -96754,7 +86940,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L27) *** @@ -96768,7 +86954,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -96792,7 +86978,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L160) *** @@ -96810,7 +86996,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -96830,7 +87016,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -96848,7 +87034,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L177) *** @@ -96866,7 +87052,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L124) *** @@ -96890,7 +87076,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L107) *** @@ -96904,7 +87090,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -96940,7 +87126,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L70) *** @@ -96962,7 +87148,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -96986,7 +87172,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L128) *** @@ -97008,7 +87194,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L94) *** @@ -97032,7 +87218,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L146) *** @@ -97050,7 +87236,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L118) *** @@ -97072,7 +87258,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/chord_sheet_parser.ts#L173) *** @@ -97086,7 +87272,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -97106,7 +87292,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/parser/ultimate_guitar_parser.ts#L87) @@ -97181,7 +87367,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L62) @@ -97201,7 +87387,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L13) @@ -97221,7 +87407,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L27) @@ -97241,7 +87427,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L55) @@ -97261,7 +87447,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L34) @@ -97277,7 +87463,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L77) @@ -97293,7 +87479,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L76) @@ -97309,7 +87495,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L78) @@ -97325,7 +87511,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L75) @@ -97345,7 +87531,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L41) @@ -97365,7 +87551,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/constants.ts#L48) @@ -97495,7 +87681,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/index.ts#L75) @@ -97707,7 +87893,7 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/1d391914f2f2f235116ce04eee25b824f55cbd64/src/template_helpers.ts#L98) # Media @@ -97774,7 +87960,372 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/## ChordSheetJS [![Code Climate] (https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) + +A JavaScript library for parsing and formatting chord sheets + +**Contents** + +- [Installation](#installation) +- [How to ...?](#how-to-) +- [Supported ChordPro directives](#supported-chordpro-directives) +- [API docs](#api-docs) +- [Contributing](#_mediacontributingmd) + +### Installation + +#### Package managers + +`ChordSheetJS` is on npm, to install run: + +```bash +npm install chordsheetjs +``` + +Load with `import`: + +```javascript +import ChordSheetJS from 'chordsheetjs'; +``` + +or `require()`: + +```javascript +var ChordSheetJS = require('chordsheetjs').default; +``` + +#### Standalone bundle file + +If you're not using a build tool, you can download and use the `bundle.js` from the +[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): + +```html + + +``` + +### How to ...? + +#### Parse chord sheet + +##### Regular chord sheets + +```javascript +const chordSheet = ` + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.ChordsOverWordsParser(); +const song = parser.parse(chordSheet); +``` + +##### Ultimate Guitar chord sheets + +```javascript +const chordSheet = ` +[Chorus] + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.UltimateGuitarParser(); +const song = parser.parse(chordSheet); +``` + +##### Chord pro format + +```javascript +const chordSheet = ` +{title: Let it be} +{subtitle: ChordSheetJS example version} + +{start_of_chorus: Chorus} +Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be +[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] +{end_of_chorus}`.substring(1); + +const parser = new ChordSheetJS.ChordProParser(); +const song = parser.parse(chordSheet); +``` + +#### Display a parsed sheet + +##### Plain text format + +```javascript +const formatter = new ChordSheetJS.TextFormatter(); +const disp = formatter.format(song); +``` + +##### HTML format + +###### Table-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlTableFormatter(); +const disp = formatter.format(song); +``` + +###### Div-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlDivFormatter(); +const disp = formatter.format(song); +``` + +##### Chord pro format + +```javascript +const formatter = new ChordSheetJS.ChordProFormatter(); +const disp = formatter.format(song); +``` + +#### Serialize/deserialize + +Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by +third-party libraries. The serialized object can also be deserialized back into a `Song`. + +```javascript +const serializedSong = new ChordSheetSerializer().serialize(song); +const deserialized = new ChordSheetSerializer().deserialize(serializedSong); +``` + +#### Add styling + +The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: + +```javascript +HtmlTableFormatter.cssString(); +// .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssString('.chordSheetViewer'); +// .chordSheetViewer .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssObject(); +// '.paragraph': { +// marginBottom: '1em' +// } +``` + +#### Parsing and modifying chords + +```javascript +import { Chord } from 'chordsheetjs'; +``` + +##### Parse + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +``` + +Parse numeric chords (Nashville system): + +```javascript +const chord = Chord.parse('b1sus4/#3'); +``` + +##### Display with #toString + +Use #toString() to convert the chord to a chord string (eg Dsus/F#) + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +chord.toString(); // --> "Ebsus4/Bb" +``` + +##### Clone + +```javascript +var chord2 = chord.clone(); +``` + +##### Normalize + +Normalizes keys B#, E#, Cb and Fb to C, F, B and E + +```javascript +const chord = Chord.parse('E#/B#'); +normalizedChord = chord.normalize(); +normalizedChord.toString(); // --> "F/C" +``` + +##### ~~Switch modifier~~ + +***Deprecated*** + +Convert # to b and vice versa + +```javascript +const chord = parseChord('Eb/Bb'); +const chord2 = chord.switchModifier(); +chord2.toString(); // --> "D#/A#" +``` + +##### Use specific modifier + +Set the chord to a specific modifier (# or b) + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('#'); +chord2.toString(); // --> "D#/A#" +``` + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('b'); +chord2.toString(); // --> "Eb/Bb" +``` + +##### Transpose up + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeUp(); +chord2.toString(); // -> "E/B" +``` + +##### Transpose down + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeDown(); +chord2.toString(); // -> "D/A" +``` + +##### Transpose + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(4); +chord2.toString(); // -> "E/G#" +``` + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(-4); +chord2.toString(); // -> "Ab/C" +``` + +##### Convert numeric chord to chord symbol + +```javascript +const numericChord = Chord.parse('2/4'); +const chordSymbol = numericChord.toChordSymbol('E'); +chordSymbol.toString(); // -> "F#/A" +``` + +### Supported ChordPro directives + +All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually +use those to change the generated output. + +:heavy_check_mark: = supported + +:clock2: = will be supported in a future version + +:heavy_multiplication_x: = currently no plans to support it in the near future + +#### Meta-data directives + +| Directive | Support | +|:---------------- |:------------------:| +| title (short: t) | :heavy_check_mark: | +| subtitle | :heavy_check_mark: | +| artist | :heavy_check_mark: | +| composer | :heavy_check_mark: | +| lyricist | :heavy_check_mark: | +| copyright | :heavy_check_mark: | +| album | :heavy_check_mark: | +| year | :heavy_check_mark: | +| key | :heavy_check_mark: | +| time | :heavy_check_mark: | +| tempo | :heavy_check_mark: | +| duration | :heavy_check_mark: | +| capo | :heavy_check_mark: | +| meta | :heavy_check_mark: | + +#### Formatting directives + +| Directive | Support | +|:-------------------------- |:------------------------:| +| comment (short: c) | :heavy_check_mark: | +| comment_italic (short: ci) | :heavy_multiplication_x: | +| comment_box (short: cb) | :heavy_multiplication_x: | +| chorus | :heavy_multiplication_x: | +| image | :heavy_multiplication_x: | + +#### Environment directives + +| Directive | Support | +|:---------------------------- |:------------------:| +| start_of_chorus (short: soc) | :heavy_check_mark: | +| end_of_chorus (short: eoc) | :heavy_check_mark: | +| start_of_verse | :heavy_check_mark: | +| end_of_verse | :heavy_check_mark: | +| start_of_tab (short: sot) | :heavy_check_mark: | +| end_of_tab (short: eot) | :heavy_check_mark: | +| start_of_grid | :heavy_check_mark: | +| end_of_grid | :heavy_check_mark: | + +#### Chord diagrams + +| Directive | Support | +|:--------- |:------------------:| +| define | :heavy_check_mark: | +| chord | :heavy_check_mark: | + +#### Fonts, sizes and colours + +| Directive | Support | +|:----------- |:------------------------:| +| textfont | :heavy_check_mark: | +| textsize | :heavy_check_mark: | +| textcolour | :heavy_check_mark: | +| chordfont | :heavy_check_mark: | +| chordsize | :heavy_check_mark: | +| chordcolour | :heavy_check_mark: | +| tabfont | :heavy_multiplication_x: | +| tabsize | :heavy_multiplication_x: | +| tabcolour | :heavy_multiplication_x: | + +#### Output related directives + +| Directive | Support | +|:------------------------------ |:------------------------:| +| new_page (short: np) | :heavy_multiplication_x: | +| new_physical_page (short: npp) | :heavy_multiplication_x: | +| column_break (short: cb) | :heavy_multiplication_x: | +| grid (short: g) | :heavy_multiplication_x: | +| no_grid (short: ng) | :heavy_multiplication_x: | +| titles | :heavy_multiplication_x: | +| columns (short: col) | :heavy_multiplication_x: | + +#### Custom extensions + +| Directive | Support | +|:--------- |:------------------:| +| x_ | :heavy_check_mark: | + +### API docs + +Note: all classes, methods and constants that are documented here can be considered public API and will only be +subject to breaking changes between major versions. + +# Classes + + [**chordsheetjs**](#readmemd) • **Docs** @@ -97822,7 +88373,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L344) +[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L344) ### Properties @@ -97836,7 +88387,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L24) +[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L24) *** @@ -97850,7 +88401,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L26) +[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L26) *** @@ -97864,7 +88415,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L28) +[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L28) ### Methods @@ -97880,7 +88431,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L60) +[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L60) *** @@ -97898,7 +88449,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L374) +[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L374) *** @@ -97914,7 +88465,7 @@ Determines whether the chord is a chord solfege ##### Defined in -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L160) +[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L160) *** @@ -97930,7 +88481,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L110) +[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L110) *** @@ -97944,7 +88495,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L432) +[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L432) *** @@ -97960,7 +88511,7 @@ Determines whether the chord is a numeral ##### Defined in -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L246) +[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L246) *** @@ -97976,7 +88527,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L227) +[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L227) *** @@ -97990,7 +88541,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L436) +[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L436) *** @@ -98041,7 +88592,7 @@ the normalized chord ##### Defined in -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L294) +[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L294) *** @@ -98059,7 +88610,7 @@ the normalized chord ##### Defined in -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L442) +[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L442) *** @@ -98086,7 +88637,7 @@ the chord solfege ##### Defined in -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L122) +[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L122) *** @@ -98115,7 +88666,7 @@ the chord solfege string ##### Defined in -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L152) +[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L152) *** @@ -98142,7 +88693,7 @@ the chord symbol ##### Defined in -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L72) +[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L72) *** @@ -98171,7 +88722,7 @@ the chord symbol string ##### Defined in -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L102) +[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L102) *** @@ -98196,7 +88747,7 @@ the numeral chord ##### Defined in -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L194) +[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L194) *** @@ -98223,7 +88774,7 @@ the numeral chord string ##### Defined in -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L219) +[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L219) *** @@ -98248,7 +88799,7 @@ the numeric chord ##### Defined in -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L170) +[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L170) *** @@ -98275,7 +88826,7 @@ the numeric chord string ##### Defined in -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L238) +[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L238) *** @@ -98304,7 +88855,7 @@ the chord string ##### Defined in -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L257) +[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L257) *** @@ -98328,7 +88879,7 @@ the new, transposed chord ##### Defined in -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L340) +[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L340) *** @@ -98346,7 +88897,7 @@ the new, transposed chord ##### Defined in -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L331) +[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L331) *** @@ -98364,7 +88915,7 @@ the new, transposed chord ##### Defined in -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L323) +[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L323) *** @@ -98388,7 +88939,7 @@ the new, changed chord ##### Defined in -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L315) +[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L315) *** @@ -98414,7 +88965,7 @@ the new, changed chord ##### Defined in -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L407) +[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L407) *** @@ -98442,7 +88993,7 @@ the new, changed chord ##### Defined in -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L380) +[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L380) *** @@ -98465,7 +89016,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L36) +[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L36) *** @@ -98483,7 +89034,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L44) +[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord.ts#L44) @@ -98527,7 +89078,7 @@ A chord definitions overrides a previous chord definition for the exact same cho ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L47) +[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L47) ### Properties @@ -98540,7 +89091,7 @@ The offset must be 1 or higher. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L24) +[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L24) *** @@ -98557,7 +89108,7 @@ Note that the values -, x, X, and N are used to designate a string without finge ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L45) +[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L45) *** @@ -98573,7 +89124,7 @@ the topmost fret position is 1. With base-fret 3, fret position 1 indicates the ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L34) +[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L34) *** @@ -98585,7 +89136,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L17) +[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L17) ### Methods @@ -98599,7 +89150,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L54) +[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/chord_definition.ts#L54) @@ -98641,7 +89192,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -98651,7 +89202,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -98661,7 +89212,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -98671,7 +89222,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -98689,7 +89240,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -98705,7 +89256,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -98721,7 +89272,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -98745,7 +89296,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -98763,7 +89314,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -98781,7 +89332,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -98795,7 +89346,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -98819,7 +89370,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -98837,7 +89388,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -98879,7 +89430,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) ### Properties @@ -98893,7 +89444,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) ### Methods @@ -98917,7 +89468,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L24) *** @@ -98935,7 +89486,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L132) *** @@ -98953,7 +89504,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L139) *** @@ -98971,7 +89522,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L158) *** @@ -98989,7 +89540,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L162) *** @@ -99007,7 +89558,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L112) *** @@ -99025,7 +89576,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L104) *** @@ -99045,7 +89596,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L38) *** @@ -99065,7 +89616,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L32) *** @@ -99085,7 +89636,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L62) *** @@ -99103,7 +89654,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L124) *** @@ -99121,7 +89672,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L78) *** @@ -99139,7 +89690,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chord_pro_formatter.ts#L96) @@ -99171,7 +89722,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -99191,7 +89742,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -99223,7 +89774,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_pro_parser.ts#L36) @@ -99272,7 +89823,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -99282,7 +89833,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L31) *** @@ -99292,7 +89843,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L35) *** @@ -99302,7 +89853,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L37) *** @@ -99312,7 +89863,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L33) *** @@ -99322,7 +89873,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L23) *** @@ -99332,7 +89883,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L21) *** @@ -99342,7 +89893,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L25) *** @@ -99352,7 +89903,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L27) *** @@ -99362,7 +89913,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -99382,7 +89933,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L160) *** @@ -99396,7 +89947,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L82) *** @@ -99410,7 +89961,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L177) *** @@ -99424,7 +89975,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L124) *** @@ -99444,7 +89995,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L107) *** @@ -99476,7 +90027,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L70) *** @@ -99494,7 +90045,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L84) *** @@ -99514,7 +90065,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L128) *** @@ -99532,7 +90083,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L94) *** @@ -99552,7 +90103,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L146) *** @@ -99566,7 +90117,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L118) *** @@ -99584,7 +90135,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L173) @@ -99616,7 +90167,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L40) *** @@ -99626,7 +90177,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L42) ### Methods @@ -99650,7 +90201,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L151) *** @@ -99668,7 +90219,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L156) *** @@ -99686,7 +90237,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L201) *** @@ -99704,7 +90255,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L184) *** @@ -99722,7 +90273,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L234) *** @@ -99740,7 +90291,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L259) *** @@ -99758,7 +90309,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L191) *** @@ -99776,7 +90327,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L213) *** @@ -99794,7 +90345,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L239) *** @@ -99817,7 +90368,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L49) *** @@ -99835,7 +90386,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L91) *** @@ -99873,7 +90424,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L114) *** @@ -99891,7 +90442,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L142) *** @@ -99909,7 +90460,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L138) *** @@ -99927,7 +90478,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L63) *** @@ -99945,7 +90496,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L56) *** @@ -99963,7 +90514,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L134) *** @@ -99981,7 +90532,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L100) *** @@ -99999,7 +90550,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet_serializer.ts#L124) @@ -100041,7 +90592,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) ### Properties @@ -100055,7 +90606,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) *** @@ -100065,7 +90616,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -100085,7 +90636,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -100109,7 +90660,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -100123,7 +90674,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -100145,7 +90696,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -100167,7 +90718,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -100187,7 +90738,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -100207,7 +90758,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -100227,7 +90778,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -100249,7 +90800,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -100269,7 +90820,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -100283,7 +90834,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -100303,7 +90854,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/chords_over_words_formatter.ts#L114) @@ -100370,7 +90921,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -100390,7 +90941,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -100422,7 +90973,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chords_over_words_parser.ts#L71) @@ -100452,7 +91003,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L7) ### Properties @@ -100462,7 +91013,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L5) ### Methods @@ -100478,7 +91029,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L23) *** @@ -100494,7 +91045,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L15) *** @@ -100508,7 +91059,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/comment.ts#L27) @@ -100546,7 +91097,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -100560,7 +91111,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L6) *** @@ -100570,7 +91121,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -100584,7 +91135,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L4) *** @@ -100598,7 +91149,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L8) *** @@ -100608,7 +91159,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -100626,7 +91177,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -100650,7 +91201,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -100664,7 +91215,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/composite.ts#L21) @@ -100705,7 +91256,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) ### Properties @@ -100715,7 +91266,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) @@ -100757,7 +91308,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) ### Properties @@ -100771,7 +91322,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) ### Accessors @@ -100802,7 +91353,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L66) *** @@ -100822,7 +91373,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_div_formatter.ts#L44) *** @@ -100842,7 +91393,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -100876,7 +91427,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L50) *** @@ -100904,7 +91455,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L26) @@ -100951,7 +91502,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) ### Properties @@ -100965,7 +91516,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) ### Accessors @@ -100992,7 +91543,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L66) *** @@ -101008,7 +91559,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L70) *** @@ -101024,7 +91575,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L72) ### Methods @@ -101054,7 +91605,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L50) *** @@ -101078,7 +91629,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L26) @@ -101121,7 +91672,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) ### Properties @@ -101135,7 +91686,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) ### Accessors @@ -101166,7 +91717,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L66) *** @@ -101186,7 +91737,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_table_formatter.ts#L45) *** @@ -101206,7 +91757,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -101240,7 +91791,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L50) *** @@ -101268,7 +91819,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/html_formatter.ts#L26) @@ -101320,7 +91871,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L249) ### Properties @@ -101334,7 +91885,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L51) *** @@ -101348,7 +91899,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L70) *** @@ -101362,7 +91913,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L55) *** @@ -101376,7 +91927,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L53) *** @@ -101386,7 +91937,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L74) *** @@ -101400,7 +91951,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L76) *** @@ -101414,7 +91965,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L72) *** @@ -101428,7 +91979,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L57) ### Accessors @@ -101444,7 +91995,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L285) *** @@ -101460,7 +92011,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L519) *** @@ -101476,7 +92027,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L490) *** @@ -101492,7 +92043,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L301) *** @@ -101508,7 +92059,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L305) *** @@ -101524,7 +92075,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L59) ### Methods @@ -101538,7 +92089,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L595) *** @@ -101552,7 +92103,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L603) *** @@ -101570,7 +92121,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L558) *** @@ -101584,7 +92135,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L317) *** @@ -101602,7 +92153,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L280) *** @@ -101620,7 +92171,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L410) *** @@ -101638,7 +92189,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L390) *** @@ -101652,7 +92203,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L402) *** @@ -101666,7 +92217,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L398) *** @@ -101680,7 +92231,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L293) *** @@ -101694,7 +92245,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L406) *** @@ -101708,7 +92259,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L394) *** @@ -101722,7 +92273,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L297) *** @@ -101736,7 +92287,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L630) *** @@ -101754,7 +92305,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L644) *** @@ -101772,7 +92323,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L611) *** @@ -101790,7 +92341,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L362) *** @@ -101808,7 +92359,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L386) *** @@ -101826,7 +92377,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L342) *** @@ -101844,7 +92395,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L382) *** @@ -101858,7 +92409,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L309) *** @@ -101876,7 +92427,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L456) *** @@ -101894,7 +92445,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L476) *** @@ -101912,7 +92463,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L431) *** @@ -101930,7 +92481,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L452) *** @@ -101954,7 +92505,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L480) *** @@ -101972,7 +92523,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L544) *** @@ -101986,7 +92537,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L582) *** @@ -102000,7 +92551,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L568) *** @@ -102018,7 +92569,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L625) *** @@ -102046,7 +92597,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L245) *** @@ -102066,7 +92617,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L419) *** @@ -102086,7 +92637,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L152) *** @@ -102108,7 +92659,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L193) *** @@ -102130,7 +92681,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L161) *** @@ -102148,7 +92699,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L78) *** @@ -102168,7 +92719,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L93) *** @@ -102186,7 +92737,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L209) *** @@ -102212,7 +92763,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L108) *** @@ -102230,7 +92781,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L617) *** @@ -102254,7 +92805,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L176) *** @@ -102272,7 +92823,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L235) *** @@ -102290,7 +92841,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L217) *** @@ -102308,7 +92859,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/key.ts#L225) @@ -102342,7 +92893,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L62) ### Properties @@ -102356,7 +92907,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L60) *** @@ -102366,7 +92917,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L38) *** @@ -102378,7 +92929,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L29) *** @@ -102388,7 +92939,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L40) *** @@ -102398,7 +92949,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L44) *** @@ -102412,7 +92963,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L52) *** @@ -102422,7 +92973,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L42) *** @@ -102435,7 +92986,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L36) ### Accessors @@ -102451,7 +93002,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L223) ### Methods @@ -102471,7 +93022,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L174) *** @@ -102489,7 +93040,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L207) *** @@ -102511,7 +93062,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L83) *** @@ -102531,7 +93082,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L201) *** @@ -102549,7 +93100,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L191) *** @@ -102565,7 +93116,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L107) *** @@ -102579,7 +93130,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L185) *** @@ -102597,7 +93148,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L170) *** @@ -102613,7 +93164,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L99) *** @@ -102629,7 +93180,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L129) *** @@ -102645,7 +93196,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L137) *** @@ -102661,7 +93212,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L71) *** @@ -102677,7 +93228,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L145) *** @@ -102691,7 +93242,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L75) *** @@ -102705,7 +93256,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L241) *** @@ -102719,7 +93270,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L237) *** @@ -102735,7 +93286,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L153) *** @@ -102751,7 +93302,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L161) *** @@ -102769,7 +93320,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L196) *** @@ -102787,7 +93338,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L111) *** @@ -102809,7 +93360,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/line.ts#L213) @@ -102845,7 +93396,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -102859,7 +93410,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L6) *** @@ -102873,7 +93424,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L4) *** @@ -102887,7 +93438,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L8) *** @@ -102897,7 +93448,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -102915,7 +93466,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -102933,7 +93484,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -102947,7 +93498,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/literal.ts#L15) @@ -102990,7 +93541,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L28) ### Properties @@ -103000,7 +93551,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -103020,7 +93571,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -103040,7 +93591,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -103060,7 +93611,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -103080,7 +93631,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -103100,7 +93651,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -103120,7 +93671,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -103140,7 +93691,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -103160,7 +93711,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -103180,7 +93731,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -103200,7 +93751,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -103220,7 +93771,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -103240,7 +93791,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -103260,7 +93811,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -103280,7 +93831,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L46) *** @@ -103294,7 +93845,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L178) *** @@ -103312,7 +93863,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L174) *** @@ -103330,7 +93881,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L42) *** @@ -103371,7 +93922,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L109) *** @@ -103389,7 +93940,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L150) *** @@ -103411,7 +93962,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L78) *** @@ -103433,7 +93984,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L82) *** @@ -103451,7 +94002,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L36) *** @@ -103469,7 +94020,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L138) *** @@ -103489,7 +94040,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata.ts#L70) @@ -103525,7 +94076,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -103543,7 +94094,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L52) *** @@ -103562,7 +94113,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L68) *** @@ -103581,7 +94132,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -103599,7 +94150,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L18) *** @@ -103619,7 +94170,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L103) *** @@ -103633,7 +94184,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L107) *** @@ -103654,7 +94205,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/paragraph.ts#L28) @@ -103688,7 +94239,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/soft_line_break.ts#L2) @@ -103730,7 +94281,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L54) ### Properties @@ -103740,7 +94291,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L44) *** @@ -103750,7 +94301,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L46) *** @@ -103764,7 +94315,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L35) *** @@ -103777,7 +94328,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L42) *** @@ -103787,7 +94338,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L48) ### Accessors @@ -103807,7 +94358,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -103827,7 +94378,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -103848,7 +94399,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L64) *** @@ -103871,7 +94422,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L78) *** @@ -103891,7 +94442,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -103911,7 +94462,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -103931,7 +94482,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -103951,7 +94502,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -103969,7 +94520,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L156) *** @@ -103989,7 +94540,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -104009,7 +94560,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -104029,7 +94580,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L148) *** @@ -104049,7 +94600,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -104069,7 +94620,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -104089,7 +94640,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -104109,7 +94660,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -104129,7 +94680,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -104147,7 +94698,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L380) *** @@ -104174,7 +94725,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L304) *** @@ -104203,7 +94754,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L357) *** @@ -104221,7 +94772,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L186) *** @@ -104239,7 +94790,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L417) *** @@ -104264,7 +94815,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L453) *** @@ -104282,7 +94833,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L427) *** @@ -104304,7 +94855,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L194) *** @@ -104326,7 +94877,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L198) *** @@ -104344,7 +94895,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L164) *** @@ -104381,7 +94932,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L398) *** @@ -104418,7 +94969,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L485) *** @@ -104432,7 +94983,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L332) *** @@ -104450,7 +95001,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L86) *** @@ -104478,7 +95029,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L225) *** @@ -104506,7 +95057,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L211) *** @@ -104526,7 +95077,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L190) *** @@ -104561,7 +95112,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L252) *** @@ -104592,7 +95143,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L292) *** @@ -104623,7 +95174,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L279) *** @@ -104647,7 +95198,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/song.ts#L322) @@ -104689,7 +95240,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L412) ### Properties @@ -104699,7 +95250,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L402) *** @@ -104709,7 +95260,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L406) *** @@ -104719,7 +95270,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L404) *** @@ -104729,7 +95280,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L408) *** @@ -104739,7 +95290,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L410) *** @@ -104753,7 +95304,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L6) *** @@ -104767,7 +95318,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L4) *** @@ -104781,7 +95332,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -104813,7 +95364,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L491) *** @@ -104833,7 +95384,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L500) *** @@ -104865,7 +95416,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L513) ### Methods @@ -104887,7 +95438,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L555) *** @@ -104906,7 +95457,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L539) *** @@ -104922,7 +95473,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L521) *** @@ -104936,7 +95487,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L477) *** @@ -104952,7 +95503,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L547) *** @@ -104968,7 +95519,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L529) *** @@ -104982,7 +95533,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L465) *** @@ -104996,7 +95547,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L473) *** @@ -105010,7 +95561,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L469) *** @@ -105030,7 +95581,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L563) *** @@ -105046,7 +95597,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L559) *** @@ -105064,7 +95615,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L437) *** @@ -105082,7 +95633,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L455) *** @@ -105102,7 +95653,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/tag.ts#L445) @@ -105138,7 +95689,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -105152,7 +95703,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L6) *** @@ -105162,7 +95713,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -105176,7 +95727,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L4) *** @@ -105190,7 +95741,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/ast_component.ts#L8) *** @@ -105200,7 +95751,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -105210,7 +95761,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -105220,7 +95771,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -105238,7 +95789,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -105272,7 +95823,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -105294,7 +95845,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -105314,7 +95865,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -105334,7 +95885,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -105348,7 +95899,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -105390,7 +95941,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L26) ### Properties @@ -105404,7 +95955,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/formatter.ts#L7) *** @@ -105414,7 +95965,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L17) ### Methods @@ -105434,7 +95985,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L102) *** @@ -105458,7 +96009,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L24) *** @@ -105472,7 +96023,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L33) *** @@ -105494,7 +96045,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L161) *** @@ -105516,7 +96067,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L129) *** @@ -105536,7 +96087,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L66) *** @@ -105556,7 +96107,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L142) *** @@ -105576,7 +96127,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L94) *** @@ -105598,7 +96149,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L150) *** @@ -105618,7 +96169,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L53) *** @@ -105632,7 +96183,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L44) *** @@ -105650,7 +96201,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L86) *** @@ -105668,7 +96219,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/formatter/text_formatter.ts#L78) @@ -105715,7 +96266,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -105729,7 +96280,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L31) *** @@ -105743,7 +96294,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L35) *** @@ -105753,7 +96304,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -105767,7 +96318,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L37) *** @@ -105781,7 +96332,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L33) *** @@ -105795,7 +96346,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L23) *** @@ -105809,7 +96360,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L21) *** @@ -105823,7 +96374,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L25) *** @@ -105837,7 +96388,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L27) *** @@ -105851,7 +96402,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -105875,7 +96426,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L160) *** @@ -105893,7 +96444,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -105913,7 +96464,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -105931,7 +96482,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L177) *** @@ -105949,7 +96500,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L124) *** @@ -105973,7 +96524,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L107) *** @@ -105987,7 +96538,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -106023,7 +96574,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L70) *** @@ -106045,7 +96596,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -106069,7 +96620,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L128) *** @@ -106091,7 +96642,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L94) *** @@ -106115,7 +96666,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L146) *** @@ -106133,7 +96684,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L118) *** @@ -106155,7 +96706,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/chord_sheet_parser.ts#L173) *** @@ -106169,7 +96720,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -106189,7 +96740,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/parser/ultimate_guitar_parser.ts#L87) @@ -106264,7 +96815,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L62) @@ -106284,7 +96835,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L13) @@ -106304,7 +96855,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L27) @@ -106324,7 +96875,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L55) @@ -106344,7 +96895,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L34) @@ -106360,7 +96911,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L77) @@ -106376,7 +96927,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L76) @@ -106392,7 +96943,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L78) @@ -106408,7 +96959,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L75) @@ -106428,7 +96979,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L41) @@ -106448,7 +96999,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/constants.ts#L48) @@ -106578,7 +97129,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/index.ts#L75) @@ -106790,7 +97341,7 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/77a410d4d57e0ffe84297dd406df70b9959c6efa/src/template_helpers.ts#L98) # Media @@ -106857,372 +97408,7 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/## ChordSheetJS [![Code Climate](https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) - -A JavaScript library for parsing and formatting chord sheets - -**Contents** - -- [Installation](#installation) -- [How to ...?](#how-to-) -- [Supported ChordPro directives](#supported-chordpro-directives) -- [API docs](#api-docs) -- [Contributing](#_mediacontributingmd) - -### Installation - -#### Package managers - -`ChordSheetJS` is on npm, to install run: - -```bash -npm install chordsheetjs -``` - -Load with `import`: - -```javascript -import ChordSheetJS from 'chordsheetjs'; -``` - -or `require()`: - -```javascript -var ChordSheetJS = require('chordsheetjs').default; -``` - -#### Standalone bundle file - -If you're not using a build tool, you can download and use the `bundle.js` from the -[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): - -```html - - -``` - -### How to ...? - -#### Parse chord sheet - -##### Regular chord sheets - -```javascript -const chordSheet = ` - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.ChordsOverWordsParser(); -const song = parser.parse(chordSheet); -``` - -##### Ultimate Guitar chord sheets - -```javascript -const chordSheet = ` -[Chorus] - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.UltimateGuitarParser(); -const song = parser.parse(chordSheet); -``` - -##### Chord pro format - -```javascript -const chordSheet = ` -{title: Let it be} -{subtitle: ChordSheetJS example version} - -{start_of_chorus: Chorus} -Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be -[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] -{end_of_chorus}`.substring(1); - -const parser = new ChordSheetJS.ChordProParser(); -const song = parser.parse(chordSheet); -``` - -#### Display a parsed sheet - -##### Plain text format - -```javascript -const formatter = new ChordSheetJS.TextFormatter(); -const disp = formatter.format(song); -``` - -##### HTML format - -###### Table-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlTableFormatter(); -const disp = formatter.format(song); -``` - -###### Div-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlDivFormatter(); -const disp = formatter.format(song); -``` - -##### Chord pro format - -```javascript -const formatter = new ChordSheetJS.ChordProFormatter(); -const disp = formatter.format(song); -``` - -#### Serialize/deserialize - -Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by -third-party libraries. The serialized object can also be deserialized back into a `Song`. - -```javascript -const serializedSong = new ChordSheetSerializer().serialize(song); -const deserialized = new ChordSheetSerializer().deserialize(serializedSong); -``` - -#### Add styling - -The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: - -```javascript -HtmlTableFormatter.cssString(); -// .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssString('.chordSheetViewer'); -// .chordSheetViewer .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssObject(); -// '.paragraph': { -// marginBottom: '1em' -// } -``` - -#### Parsing and modifying chords - -```javascript -import { Chord } from 'chordsheetjs'; -``` - -##### Parse - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -``` - -Parse numeric chords (Nashville system): - -```javascript -const chord = Chord.parse('b1sus4/#3'); -``` - -##### Display with #toString - -Use #toString() to convert the chord to a chord string (eg Dsus/F#) - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -chord.toString(); // --> "Ebsus4/Bb" -``` - -##### Clone - -```javascript -var chord2 = chord.clone(); -``` - -##### Normalize - -Normalizes keys B#, E#, Cb and Fb to C, F, B and E - -```javascript -const chord = Chord.parse('E#/B#'); -normalizedChord = chord.normalize(); -normalizedChord.toString(); // --> "F/C" -``` - -##### ~~Switch modifier~~ - -***Deprecated*** - -Convert # to b and vice versa - -```javascript -const chord = parseChord('Eb/Bb'); -const chord2 = chord.switchModifier(); -chord2.toString(); // --> "D#/A#" -``` - -##### Use specific modifier - -Set the chord to a specific modifier (# or b) - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('#'); -chord2.toString(); // --> "D#/A#" -``` - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('b'); -chord2.toString(); // --> "Eb/Bb" -``` - -##### Transpose up - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeUp(); -chord2.toString(); // -> "E/B" -``` - -##### Transpose down - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeDown(); -chord2.toString(); // -> "D/A" -``` - -##### Transpose - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(4); -chord2.toString(); // -> "E/G#" -``` - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(-4); -chord2.toString(); // -> "Ab/C" -``` - -##### Convert numeric chord to chord symbol - -```javascript -const numericChord = Chord.parse('2/4'); -const chordSymbol = numericChord.toChordSymbol('E'); -chordSymbol.toString(); // -> "F#/A" -``` - -### Supported ChordPro directives - -All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually -use those to change the generated output. - -:heavy_check_mark: = supported - -:clock2: = will be supported in a future version - -:heavy_multiplication_x: = currently no plans to support it in the near future - -#### Meta-data directives - -| Directive | Support | -|:---------------- |:------------------:| -| title (short: t) | :heavy_check_mark: | -| subtitle | :heavy_check_mark: | -| artist | :heavy_check_mark: | -| composer | :heavy_check_mark: | -| lyricist | :heavy_check_mark: | -| copyright | :heavy_check_mark: | -| album | :heavy_check_mark: | -| year | :heavy_check_mark: | -| key | :heavy_check_mark: | -| time | :heavy_check_mark: | -| tempo | :heavy_check_mark: | -| duration | :heavy_check_mark: | -| capo | :heavy_check_mark: | -| meta | :heavy_check_mark: | - -#### Formatting directives - -| Directive | Support | -|:-------------------------- |:------------------------:| -| comment (short: c) | :heavy_check_mark: | -| comment_italic (short: ci) | :heavy_multiplication_x: | -| comment_box (short: cb) | :heavy_multiplication_x: | -| chorus | :heavy_multiplication_x: | -| image | :heavy_multiplication_x: | - -#### Environment directives - -| Directive | Support | -|:---------------------------- |:------------------:| -| start_of_chorus (short: soc) | :heavy_check_mark: | -| end_of_chorus (short: eoc) | :heavy_check_mark: | -| start_of_verse | :heavy_check_mark: | -| end_of_verse | :heavy_check_mark: | -| start_of_tab (short: sot) | :heavy_check_mark: | -| end_of_tab (short: eot) | :heavy_check_mark: | -| start_of_grid | :heavy_check_mark: | -| end_of_grid | :heavy_check_mark: | - -#### Chord diagrams - -| Directive | Support | -|:--------- |:------------------:| -| define | :heavy_check_mark: | -| chord | :heavy_check_mark: | - -#### Fonts, sizes and colours - -| Directive | Support | -|:----------- |:------------------------:| -| textfont | :heavy_check_mark: | -| textsize | :heavy_check_mark: | -| textcolour | :heavy_check_mark: | -| chordfont | :heavy_check_mark: | -| chordsize | :heavy_check_mark: | -| chordcolour | :heavy_check_mark: | -| tabfont | :heavy_multiplication_x: | -| tabsize | :heavy_multiplication_x: | -| tabcolour | :heavy_multiplication_x: | - -#### Output related directives - -| Directive | Support | -|:------------------------------ |:------------------------:| -| new_page (short: np) | :heavy_multiplication_x: | -| new_physical_page (short: npp) | :heavy_multiplication_x: | -| column_break (short: cb) | :heavy_multiplication_x: | -| grid (short: g) | :heavy_multiplication_x: | -| no_grid (short: ng) | :heavy_multiplication_x: | -| titles | :heavy_multiplication_x: | -| columns (short: col) | :heavy_multiplication_x: | - -#### Custom extensions - -| Directive | Support | -|:--------- |:------------------:| -| x_ | :heavy_check_mark: | - -### API docs - -Note: all classes, methods and constants that are documented here can be considered public API and will only be -subject to breaking changes between major versions. - -# Classes - - +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes [**chordsheetjs**](#readmemd) • **Docs** @@ -116305,7 +106491,372 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/ +## ChordSheetJS [![Code Climate](https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) + +A JavaScript library for parsing and formatting chord sheets + +**Contents** + +- [Installation](#installation) +- [How to ...?](#how-to-) +- [Supported ChordPro directives](#supported-chordpro-directives) +- [API docs](#api-docs) +- [Contributing](#_mediacontributingmd) + +### Installation + +#### Package managers + +`ChordSheetJS` is on npm, to install run: + +```bash +npm install chordsheetjs +``` + +Load with `import`: + +```javascript +import ChordSheetJS from 'chordsheetjs'; +``` + +or `require()`: + +```javascript +var ChordSheetJS = require('chordsheetjs').default; +``` + +#### Standalone bundle file + +If you're not using a build tool, you can download and use the `bundle.js` from the +[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): + +```html + + +``` + +### How to ...? + +#### Parse chord sheet + +##### Regular chord sheets + +```javascript +const chordSheet = ` + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.ChordsOverWordsParser(); +const song = parser.parse(chordSheet); +``` + +##### Ultimate Guitar chord sheets + +```javascript +const chordSheet = ` +[Chorus] + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.UltimateGuitarParser(); +const song = parser.parse(chordSheet); +``` + +##### Chord pro format + +```javascript +const chordSheet = ` +{title: Let it be} +{subtitle: ChordSheetJS example version} + +{start_of_chorus: Chorus} +Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be +[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] +{end_of_chorus}`.substring(1); + +const parser = new ChordSheetJS.ChordProParser(); +const song = parser.parse(chordSheet); +``` + +#### Display a parsed sheet + +##### Plain text format + +```javascript +const formatter = new ChordSheetJS.TextFormatter(); +const disp = formatter.format(song); +``` + +##### HTML format + +###### Table-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlTableFormatter(); +const disp = formatter.format(song); +``` + +###### Div-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlDivFormatter(); +const disp = formatter.format(song); +``` + +##### Chord pro format + +```javascript +const formatter = new ChordSheetJS.ChordProFormatter(); +const disp = formatter.format(song); +``` + +#### Serialize/deserialize + +Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by +third-party libraries. The serialized object can also be deserialized back into a `Song`. + +```javascript +const serializedSong = new ChordSheetSerializer().serialize(song); +const deserialized = new ChordSheetSerializer().deserialize(serializedSong); +``` + +#### Add styling + +The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: + +```javascript +HtmlTableFormatter.cssString(); +// .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssString('.chordSheetViewer'); +// .chordSheetViewer .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssObject(); +// '.paragraph': { +// marginBottom: '1em' +// } +``` + +#### Parsing and modifying chords + +```javascript +import { Chord } from 'chordsheetjs'; +``` + +##### Parse + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +``` + +Parse numeric chords (Nashville system): + +```javascript +const chord = Chord.parse('b1sus4/#3'); +``` + +##### Display with #toString + +Use #toString() to convert the chord to a chord string (eg Dsus/F#) + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +chord.toString(); // --> "Ebsus4/Bb" +``` + +##### Clone + +```javascript +var chord2 = chord.clone(); +``` + +##### Normalize + +Normalizes keys B#, E#, Cb and Fb to C, F, B and E + +```javascript +const chord = Chord.parse('E#/B#'); +normalizedChord = chord.normalize(); +normalizedChord.toString(); // --> "F/C" +``` + +##### ~~Switch modifier~~ + +***Deprecated*** + +Convert # to b and vice versa + +```javascript +const chord = parseChord('Eb/Bb'); +const chord2 = chord.switchModifier(); +chord2.toString(); // --> "D#/A#" +``` + +##### Use specific modifier + +Set the chord to a specific modifier (# or b) + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('#'); +chord2.toString(); // --> "D#/A#" +``` + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('b'); +chord2.toString(); // --> "Eb/Bb" +``` + +##### Transpose up + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeUp(); +chord2.toString(); // -> "E/B" +``` + +##### Transpose down + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeDown(); +chord2.toString(); // -> "D/A" +``` + +##### Transpose + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(4); +chord2.toString(); // -> "E/G#" +``` + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(-4); +chord2.toString(); // -> "Ab/C" +``` + +##### Convert numeric chord to chord symbol + +```javascript +const numericChord = Chord.parse('2/4'); +const chordSymbol = numericChord.toChordSymbol('E'); +chordSymbol.toString(); // -> "F#/A" +``` + +### Supported ChordPro directives + +All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually +use those to change the generated output. + +:heavy_check_mark: = supported + +:clock2: = will be supported in a future version + +:heavy_multiplication_x: = currently no plans to support it in the near future + +#### Meta-data directives + +| Directive | Support | +|:---------------- |:------------------:| +| title (short: t) | :heavy_check_mark: | +| subtitle | :heavy_check_mark: | +| artist | :heavy_check_mark: | +| composer | :heavy_check_mark: | +| lyricist | :heavy_check_mark: | +| copyright | :heavy_check_mark: | +| album | :heavy_check_mark: | +| year | :heavy_check_mark: | +| key | :heavy_check_mark: | +| time | :heavy_check_mark: | +| tempo | :heavy_check_mark: | +| duration | :heavy_check_mark: | +| capo | :heavy_check_mark: | +| meta | :heavy_check_mark: | + +#### Formatting directives + +| Directive | Support | +|:-------------------------- |:------------------------:| +| comment (short: c) | :heavy_check_mark: | +| comment_italic (short: ci) | :heavy_multiplication_x: | +| comment_box (short: cb) | :heavy_multiplication_x: | +| chorus | :heavy_multiplication_x: | +| image | :heavy_multiplication_x: | + +#### Environment directives + +| Directive | Support | +|:---------------------------- |:------------------:| +| start_of_chorus (short: soc) | :heavy_check_mark: | +| end_of_chorus (short: eoc) | :heavy_check_mark: | +| start_of_verse | :heavy_check_mark: | +| end_of_verse | :heavy_check_mark: | +| start_of_tab (short: sot) | :heavy_check_mark: | +| end_of_tab (short: eot) | :heavy_check_mark: | +| start_of_grid | :heavy_check_mark: | +| end_of_grid | :heavy_check_mark: | + +#### Chord diagrams + +| Directive | Support | +|:--------- |:------------------:| +| define | :heavy_check_mark: | +| chord | :heavy_check_mark: | + +#### Fonts, sizes and colours + +| Directive | Support | +|:----------- |:------------------------:| +| textfont | :heavy_check_mark: | +| textsize | :heavy_check_mark: | +| textcolour | :heavy_check_mark: | +| chordfont | :heavy_check_mark: | +| chordsize | :heavy_check_mark: | +| chordcolour | :heavy_check_mark: | +| tabfont | :heavy_multiplication_x: | +| tabsize | :heavy_multiplication_x: | +| tabcolour | :heavy_multiplication_x: | + +#### Output related directives + +| Directive | Support | +|:------------------------------ |:------------------------:| +| new_page (short: np) | :heavy_multiplication_x: | +| new_physical_page (short: npp) | :heavy_multiplication_x: | +| column_break (short: cb) | :heavy_multiplication_x: | +| grid (short: g) | :heavy_multiplication_x: | +| no_grid (short: ng) | :heavy_multiplication_x: | +| titles | :heavy_multiplication_x: | +| columns (short: col) | :heavy_multiplication_x: | + +#### Custom extensions + +| Directive | Support | +|:--------- |:------------------:| +| x_ | :heavy_check_mark: | + +### API docs + +Note: all classes, methods and constants that are documented here can be considered public API and will only be +subject to breaking changes between major versions. + +# Classes + [**chordsheetjs**](#readmemd) • **Docs** @@ -116354,7 +106905,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L344) +[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L344) ### Properties @@ -116368,7 +106919,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L24) +[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L24) *** @@ -116382,7 +106933,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L26) +[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L26) *** @@ -116396,7 +106947,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L28) +[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L28) ### Methods @@ -116412,7 +106963,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L60) +[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L60) *** @@ -116430,7 +106981,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L374) +[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L374) *** @@ -116446,7 +106997,7 @@ Determines whether the chord is a chord solfege ##### Defined in -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L160) +[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L160) *** @@ -116462,7 +107013,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L110) +[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L110) *** @@ -116476,7 +107027,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L432) +[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L432) *** @@ -116492,7 +107043,7 @@ Determines whether the chord is a numeral ##### Defined in -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L246) +[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L246) *** @@ -116508,7 +107059,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L227) +[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L227) *** @@ -116522,7 +107073,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L436) +[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L436) *** @@ -116573,7 +107124,7 @@ the normalized chord ##### Defined in -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L294) +[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L294) *** @@ -116591,7 +107142,7 @@ the normalized chord ##### Defined in -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L442) +[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L442) *** @@ -116618,7 +107169,7 @@ the chord solfege ##### Defined in -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L122) +[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L122) *** @@ -116647,7 +107198,7 @@ the chord solfege string ##### Defined in -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L152) +[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L152) *** @@ -116674,7 +107225,7 @@ the chord symbol ##### Defined in -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L72) +[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L72) *** @@ -116703,7 +107254,7 @@ the chord symbol string ##### Defined in -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L102) +[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L102) *** @@ -116728,7 +107279,7 @@ the numeral chord ##### Defined in -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L194) +[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L194) *** @@ -116755,7 +107306,7 @@ the numeral chord string ##### Defined in -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L219) +[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L219) *** @@ -116780,7 +107331,7 @@ the numeric chord ##### Defined in -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L170) +[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L170) *** @@ -116807,7 +107358,7 @@ the numeric chord string ##### Defined in -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L238) +[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L238) *** @@ -116836,7 +107387,7 @@ the chord string ##### Defined in -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L257) +[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L257) *** @@ -116860,7 +107411,7 @@ the new, transposed chord ##### Defined in -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L340) +[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L340) *** @@ -116878,7 +107429,7 @@ the new, transposed chord ##### Defined in -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L331) +[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L331) *** @@ -116896,7 +107447,7 @@ the new, transposed chord ##### Defined in -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L323) +[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L323) *** @@ -116920,7 +107471,7 @@ the new, changed chord ##### Defined in -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L315) +[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L315) *** @@ -116946,7 +107497,7 @@ the new, changed chord ##### Defined in -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L407) +[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L407) *** @@ -116974,7 +107525,7 @@ the new, changed chord ##### Defined in -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L380) +[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L380) *** @@ -116997,7 +107548,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L36) +[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L36) *** @@ -117015,7 +107566,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L44) +[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord.ts#L44) @@ -117059,7 +107610,7 @@ A chord definitions overrides a previous chord definition for the exact same cho ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L47) +[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L47) ### Properties @@ -117072,7 +107623,7 @@ The offset must be 1 or higher. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L24) +[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L24) *** @@ -117089,7 +107640,7 @@ Note that the values -, x, X, and N are used to designate a string without finge ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L45) +[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L45) *** @@ -117105,7 +107656,7 @@ the topmost fret position is 1. With base-fret 3, fret position 1 indicates the ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L34) +[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L34) *** @@ -117117,7 +107668,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L17) +[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L17) ### Methods @@ -117131,7 +107682,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L54) +[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/chord_definition.ts#L54) @@ -117173,7 +107724,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -117183,7 +107734,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -117193,7 +107744,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -117203,7 +107754,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -117221,7 +107772,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -117237,7 +107788,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -117253,7 +107804,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -117277,7 +107828,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -117295,7 +107846,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -117313,7 +107864,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -117327,7 +107878,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -117351,7 +107902,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -117369,7 +107920,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -117411,7 +107962,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) ### Properties @@ -117425,7 +107976,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) ### Methods @@ -117449,7 +108000,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L24) *** @@ -117467,7 +108018,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L132) *** @@ -117485,7 +108036,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L139) *** @@ -117503,7 +108054,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L158) *** @@ -117521,7 +108072,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L162) *** @@ -117539,7 +108090,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L112) *** @@ -117557,7 +108108,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L104) *** @@ -117577,7 +108128,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L38) *** @@ -117597,7 +108148,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L32) *** @@ -117617,7 +108168,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L62) *** @@ -117635,7 +108186,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L124) *** @@ -117653,7 +108204,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L78) *** @@ -117671,7 +108222,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chord_pro_formatter.ts#L96) @@ -117703,7 +108254,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -117723,7 +108274,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -117755,7 +108306,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_pro_parser.ts#L36) @@ -117804,7 +108355,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -117814,7 +108365,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L31) *** @@ -117824,7 +108375,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L35) *** @@ -117834,7 +108385,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L37) *** @@ -117844,7 +108395,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L33) *** @@ -117854,7 +108405,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L23) *** @@ -117864,7 +108415,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L21) *** @@ -117874,7 +108425,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L25) *** @@ -117884,7 +108435,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L27) *** @@ -117894,7 +108445,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -117914,7 +108465,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L160) *** @@ -117928,7 +108479,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L82) *** @@ -117942,7 +108493,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L177) *** @@ -117956,7 +108507,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L124) *** @@ -117976,7 +108527,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L107) *** @@ -118008,7 +108559,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L70) *** @@ -118026,7 +108577,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L84) *** @@ -118046,7 +108597,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L128) *** @@ -118064,7 +108615,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L94) *** @@ -118084,7 +108635,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L146) *** @@ -118098,7 +108649,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L118) *** @@ -118116,7 +108667,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L173) @@ -118148,7 +108699,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L40) *** @@ -118158,7 +108709,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L42) ### Methods @@ -118182,7 +108733,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L151) *** @@ -118200,7 +108751,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L156) *** @@ -118218,7 +108769,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L201) *** @@ -118236,7 +108787,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L184) *** @@ -118254,7 +108805,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L234) *** @@ -118272,7 +108823,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L259) *** @@ -118290,7 +108841,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L191) *** @@ -118308,7 +108859,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L213) *** @@ -118326,7 +108877,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L239) *** @@ -118349,7 +108900,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L49) *** @@ -118367,7 +108918,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L91) *** @@ -118405,7 +108956,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L114) *** @@ -118423,7 +108974,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L142) *** @@ -118441,7 +108992,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L138) *** @@ -118459,7 +109010,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L63) *** @@ -118477,7 +109028,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L56) *** @@ -118495,7 +109046,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L134) *** @@ -118513,7 +109064,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L100) *** @@ -118531,7 +109082,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet_serializer.ts#L124) @@ -118573,7 +109124,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) ### Properties @@ -118587,7 +109138,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) *** @@ -118597,7 +109148,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -118617,7 +109168,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -118641,7 +109192,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -118655,7 +109206,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -118677,7 +109228,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -118699,7 +109250,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -118719,7 +109270,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -118739,7 +109290,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -118759,7 +109310,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -118781,7 +109332,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -118801,7 +109352,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -118815,7 +109366,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -118835,7 +109386,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/chords_over_words_formatter.ts#L114) @@ -118902,7 +109453,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -118922,7 +109473,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -118954,7 +109505,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chords_over_words_parser.ts#L71) @@ -118984,7 +109535,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L7) ### Properties @@ -118994,7 +109545,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L5) ### Methods @@ -119010,7 +109561,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L23) *** @@ -119026,7 +109577,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L15) *** @@ -119040,7 +109591,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/comment.ts#L27) @@ -119078,7 +109629,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -119092,7 +109643,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L6) *** @@ -119102,7 +109653,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -119116,7 +109667,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L4) *** @@ -119130,7 +109681,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L8) *** @@ -119140,7 +109691,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -119158,7 +109709,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -119182,7 +109733,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -119196,7 +109747,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/composite.ts#L21) @@ -119237,7 +109788,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) ### Properties @@ -119247,7 +109798,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) @@ -119289,7 +109840,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) ### Properties @@ -119303,7 +109854,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) ### Accessors @@ -119334,7 +109885,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L66) *** @@ -119354,7 +109905,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_div_formatter.ts#L44) *** @@ -119374,7 +109925,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -119408,7 +109959,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L50) *** @@ -119436,7 +109987,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L26) @@ -119483,7 +110034,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) ### Properties @@ -119497,7 +110048,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) ### Accessors @@ -119524,7 +110075,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L66) *** @@ -119540,7 +110091,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L70) *** @@ -119556,7 +110107,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L72) ### Methods @@ -119586,7 +110137,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L50) *** @@ -119610,7 +110161,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L26) @@ -119653,7 +110204,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) ### Properties @@ -119667,7 +110218,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) ### Accessors @@ -119698,7 +110249,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L66) *** @@ -119718,7 +110269,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_table_formatter.ts#L45) *** @@ -119738,7 +110289,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -119772,7 +110323,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L50) *** @@ -119800,7 +110351,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/html_formatter.ts#L26) @@ -119852,7 +110403,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L249) ### Properties @@ -119866,7 +110417,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L51) *** @@ -119880,7 +110431,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L70) *** @@ -119894,7 +110445,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L55) *** @@ -119908,7 +110459,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L53) *** @@ -119918,7 +110469,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L74) *** @@ -119932,7 +110483,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L76) *** @@ -119946,7 +110497,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L72) *** @@ -119960,7 +110511,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L57) ### Accessors @@ -119976,7 +110527,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L285) *** @@ -119992,7 +110543,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L519) *** @@ -120008,7 +110559,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L490) *** @@ -120024,7 +110575,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L301) *** @@ -120040,7 +110591,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L305) *** @@ -120056,7 +110607,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L59) ### Methods @@ -120070,7 +110621,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L595) *** @@ -120084,7 +110635,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L603) *** @@ -120102,7 +110653,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L558) *** @@ -120116,7 +110667,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L317) *** @@ -120134,7 +110685,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L280) *** @@ -120152,7 +110703,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L410) *** @@ -120170,7 +110721,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L390) *** @@ -120184,7 +110735,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L402) *** @@ -120198,7 +110749,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L398) *** @@ -120212,7 +110763,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L293) *** @@ -120226,7 +110777,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L406) *** @@ -120240,7 +110791,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L394) *** @@ -120254,7 +110805,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L297) *** @@ -120268,7 +110819,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L630) *** @@ -120286,7 +110837,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L644) *** @@ -120304,7 +110855,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L611) *** @@ -120322,7 +110873,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L362) *** @@ -120340,7 +110891,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L386) *** @@ -120358,7 +110909,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L342) *** @@ -120376,7 +110927,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L382) *** @@ -120390,7 +110941,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L309) *** @@ -120408,7 +110959,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L456) *** @@ -120426,7 +110977,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L476) *** @@ -120444,7 +110995,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L431) *** @@ -120462,7 +111013,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L452) *** @@ -120486,7 +111037,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L480) *** @@ -120504,7 +111055,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L544) *** @@ -120518,7 +111069,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L582) *** @@ -120532,7 +111083,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L568) *** @@ -120550,7 +111101,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L625) *** @@ -120578,7 +111129,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L245) *** @@ -120598,7 +111149,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L419) *** @@ -120618,7 +111169,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L152) *** @@ -120640,7 +111191,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L193) *** @@ -120662,7 +111213,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L161) *** @@ -120680,7 +111231,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L78) *** @@ -120700,7 +111251,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L93) *** @@ -120718,7 +111269,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L209) *** @@ -120744,7 +111295,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L108) *** @@ -120762,7 +111313,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L617) *** @@ -120786,7 +111337,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L176) *** @@ -120804,7 +111355,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L235) *** @@ -120822,7 +111373,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L217) *** @@ -120840,7 +111391,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/key.ts#L225) @@ -120874,7 +111425,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L62) ### Properties @@ -120888,7 +111439,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L60) *** @@ -120898,7 +111449,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L38) *** @@ -120910,7 +111461,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L29) *** @@ -120920,7 +111471,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L40) *** @@ -120930,7 +111481,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L44) *** @@ -120944,7 +111495,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L52) *** @@ -120954,7 +111505,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L42) *** @@ -120967,7 +111518,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L36) ### Accessors @@ -120983,7 +111534,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L223) ### Methods @@ -121003,7 +111554,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L174) *** @@ -121021,7 +111572,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L207) *** @@ -121043,7 +111594,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L83) *** @@ -121063,7 +111614,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L201) *** @@ -121081,7 +111632,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L191) *** @@ -121097,7 +111648,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L107) *** @@ -121111,7 +111662,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L185) *** @@ -121129,7 +111680,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L170) *** @@ -121145,7 +111696,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L99) *** @@ -121161,7 +111712,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L129) *** @@ -121177,7 +111728,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L137) *** @@ -121193,7 +111744,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L71) *** @@ -121209,7 +111760,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L145) *** @@ -121223,7 +111774,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L75) *** @@ -121237,7 +111788,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L241) *** @@ -121251,7 +111802,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L237) *** @@ -121267,7 +111818,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L153) *** @@ -121283,7 +111834,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L161) *** @@ -121301,7 +111852,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L196) *** @@ -121319,7 +111870,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L111) *** @@ -121341,7 +111892,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/line.ts#L213) @@ -121377,7 +111928,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -121391,7 +111942,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L6) *** @@ -121405,7 +111956,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L4) *** @@ -121419,7 +111970,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L8) *** @@ -121429,7 +111980,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -121447,7 +111998,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -121465,7 +112016,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -121479,7 +112030,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/literal.ts#L15) @@ -121522,7 +112073,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L28) ### Properties @@ -121532,7 +112083,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -121552,7 +112103,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -121572,7 +112123,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -121592,7 +112143,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -121612,7 +112163,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -121632,7 +112183,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -121652,7 +112203,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -121672,7 +112223,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -121692,7 +112243,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -121712,7 +112263,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -121732,7 +112283,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -121752,7 +112303,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -121772,7 +112323,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -121792,7 +112343,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -121812,7 +112363,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L46) *** @@ -121826,7 +112377,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L178) *** @@ -121844,7 +112395,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L174) *** @@ -121862,7 +112413,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L42) *** @@ -121903,7 +112454,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L109) *** @@ -121921,7 +112472,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L150) *** @@ -121943,7 +112494,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L78) *** @@ -121965,7 +112516,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L82) *** @@ -121983,7 +112534,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L36) *** @@ -122001,7 +112552,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L138) *** @@ -122021,7 +112572,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata.ts#L70) @@ -122057,7 +112608,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -122075,7 +112626,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L52) *** @@ -122094,7 +112645,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L68) *** @@ -122113,7 +112664,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -122131,7 +112682,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L18) *** @@ -122151,7 +112702,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L103) *** @@ -122165,7 +112716,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L107) *** @@ -122186,7 +112737,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/paragraph.ts#L28) @@ -122220,7 +112771,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/soft_line_break.ts#L2) @@ -122262,7 +112813,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L54) ### Properties @@ -122272,7 +112823,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L44) *** @@ -122282,7 +112833,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L46) *** @@ -122296,7 +112847,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L35) *** @@ -122309,7 +112860,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L42) *** @@ -122319,7 +112870,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L48) ### Accessors @@ -122339,7 +112890,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -122359,7 +112910,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -122380,7 +112931,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L64) *** @@ -122403,7 +112954,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L78) *** @@ -122423,7 +112974,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -122443,7 +112994,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -122463,7 +113014,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -122483,7 +113034,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -122501,7 +113052,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L156) *** @@ -122521,7 +113072,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -122541,7 +113092,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -122561,7 +113112,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L148) *** @@ -122581,7 +113132,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -122601,7 +113152,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -122621,7 +113172,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -122641,7 +113192,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -122661,7 +113212,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -122679,7 +113230,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L380) *** @@ -122706,7 +113257,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L304) *** @@ -122735,7 +113286,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L357) *** @@ -122753,7 +113304,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L186) *** @@ -122771,7 +113322,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L417) *** @@ -122796,7 +113347,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L453) *** @@ -122814,7 +113365,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L427) *** @@ -122836,7 +113387,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L194) *** @@ -122858,7 +113409,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L198) *** @@ -122876,7 +113427,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L164) *** @@ -122913,7 +113464,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L398) *** @@ -122950,7 +113501,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L485) *** @@ -122964,7 +113515,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L332) *** @@ -122982,7 +113533,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L86) *** @@ -123010,7 +113561,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L225) *** @@ -123038,7 +113589,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L211) *** @@ -123058,7 +113609,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L190) *** @@ -123093,7 +113644,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L252) *** @@ -123124,7 +113675,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L292) *** @@ -123155,7 +113706,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L279) *** @@ -123179,7 +113730,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/song.ts#L322) @@ -123221,7 +113772,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L412) ### Properties @@ -123231,7 +113782,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L402) *** @@ -123241,7 +113792,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L406) *** @@ -123251,7 +113802,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L404) *** @@ -123261,7 +113812,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L408) *** @@ -123271,7 +113822,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L410) *** @@ -123285,7 +113836,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L6) *** @@ -123299,7 +113850,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L4) *** @@ -123313,7 +113864,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -123345,7 +113896,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L491) *** @@ -123365,7 +113916,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L500) *** @@ -123397,7 +113948,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L513) ### Methods @@ -123419,7 +113970,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L555) *** @@ -123438,7 +113989,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L539) *** @@ -123454,7 +114005,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L521) *** @@ -123468,7 +114019,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L477) *** @@ -123484,7 +114035,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L547) *** @@ -123500,7 +114051,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L529) *** @@ -123514,7 +114065,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L465) *** @@ -123528,7 +114079,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L473) *** @@ -123542,7 +114093,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L469) *** @@ -123562,7 +114113,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L563) *** @@ -123578,7 +114129,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L559) *** @@ -123596,7 +114147,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L437) *** @@ -123614,7 +114165,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L455) *** @@ -123634,7 +114185,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/tag.ts#L445) @@ -123670,7 +114221,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -123684,7 +114235,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L6) *** @@ -123694,7 +114245,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -123708,7 +114259,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L4) *** @@ -123722,7 +114273,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/ast_component.ts#L8) *** @@ -123732,7 +114283,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -123742,7 +114293,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -123752,7 +114303,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -123770,7 +114321,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -123804,7 +114355,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -123826,7 +114377,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -123846,7 +114397,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -123866,7 +114417,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -123880,7 +114431,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -123922,7 +114473,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L26) ### Properties @@ -123936,7 +114487,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/formatter.ts#L7) *** @@ -123946,7 +114497,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L17) ### Methods @@ -123966,7 +114517,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L102) *** @@ -123990,7 +114541,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L24) *** @@ -124004,7 +114555,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L33) *** @@ -124026,7 +114577,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L161) *** @@ -124048,7 +114599,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L129) *** @@ -124068,7 +114619,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L66) *** @@ -124088,7 +114639,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L142) *** @@ -124108,7 +114659,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L94) *** @@ -124130,7 +114681,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L150) *** @@ -124150,7 +114701,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L53) *** @@ -124164,7 +114715,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L44) *** @@ -124182,7 +114733,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L86) *** @@ -124200,7 +114751,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/formatter/text_formatter.ts#L78) @@ -124247,7 +114798,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -124261,7 +114812,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L31) *** @@ -124275,7 +114826,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L35) *** @@ -124285,7 +114836,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -124299,7 +114850,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L37) *** @@ -124313,7 +114864,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L33) *** @@ -124327,7 +114878,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L23) *** @@ -124341,7 +114892,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L21) *** @@ -124355,7 +114906,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L25) *** @@ -124369,7 +114920,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L27) *** @@ -124383,7 +114934,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -124407,7 +114958,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L160) *** @@ -124425,7 +114976,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -124445,7 +114996,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -124463,7 +115014,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L177) *** @@ -124481,7 +115032,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L124) *** @@ -124505,7 +115056,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L107) *** @@ -124519,7 +115070,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -124555,7 +115106,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L70) *** @@ -124577,7 +115128,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -124601,7 +115152,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L128) *** @@ -124623,7 +115174,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L94) *** @@ -124647,7 +115198,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L146) *** @@ -124665,7 +115216,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L118) *** @@ -124687,7 +115238,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/chord_sheet_parser.ts#L173) *** @@ -124701,7 +115252,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -124721,7 +115272,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/parser/ultimate_guitar_parser.ts#L87) @@ -124796,7 +115347,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L62) @@ -124816,7 +115367,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L13) @@ -124836,7 +115387,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L27) @@ -124856,7 +115407,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L55) @@ -124876,7 +115427,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L34) @@ -124892,7 +115443,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L77) @@ -124908,7 +115459,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L76) @@ -124924,7 +115475,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L78) @@ -124940,7 +115491,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L75) @@ -124960,7 +115511,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L41) @@ -124980,7 +115531,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/constants.ts#L48) @@ -125110,7 +115661,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/index.ts#L75) @@ -125322,7 +115873,7 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/449e527291c25800ca50b092b383bcedc35f71d4/src/template_helpers.ts#L98) # Media @@ -125389,372 +115940,7 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/ - -## ChordSheetJS [![Code Climate](https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) - -A JavaScript library for parsing and formatting chord sheets - -**Contents** - -- [Installation](#installation) -- [How to ...?](#how-to-) -- [Supported ChordPro directives](#supported-chordpro-directives) -- [API docs](#api-docs) -- [Contributing](#_mediacontributingmd) - -### Installation - -#### Package managers - -`ChordSheetJS` is on npm, to install run: - -```bash -npm install chordsheetjs -``` - -Load with `import`: - -```javascript -import ChordSheetJS from 'chordsheetjs'; -``` - -or `require()`: - -```javascript -var ChordSheetJS = require('chordsheetjs').default; -``` - -#### Standalone bundle file - -If you're not using a build tool, you can download and use the `bundle.js` from the -[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): - -```html - - -``` - -### How to ...? - -#### Parse chord sheet - -##### Regular chord sheets - -```javascript -const chordSheet = ` - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.ChordsOverWordsParser(); -const song = parser.parse(chordSheet); -``` - -##### Ultimate Guitar chord sheets - -```javascript -const chordSheet = ` -[Chorus] - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.UltimateGuitarParser(); -const song = parser.parse(chordSheet); -``` - -##### Chord pro format - -```javascript -const chordSheet = ` -{title: Let it be} -{subtitle: ChordSheetJS example version} - -{start_of_chorus: Chorus} -Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be -[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] -{end_of_chorus}`.substring(1); - -const parser = new ChordSheetJS.ChordProParser(); -const song = parser.parse(chordSheet); -``` - -#### Display a parsed sheet - -##### Plain text format - -```javascript -const formatter = new ChordSheetJS.TextFormatter(); -const disp = formatter.format(song); -``` - -##### HTML format - -###### Table-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlTableFormatter(); -const disp = formatter.format(song); -``` - -###### Div-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlDivFormatter(); -const disp = formatter.format(song); -``` - -##### Chord pro format - -```javascript -const formatter = new ChordSheetJS.ChordProFormatter(); -const disp = formatter.format(song); -``` - -#### Serialize/deserialize - -Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by -third-party libraries. The serialized object can also be deserialized back into a `Song`. - -```javascript -const serializedSong = new ChordSheetSerializer().serialize(song); -const deserialized = new ChordSheetSerializer().deserialize(serializedSong); -``` - -#### Add styling - -The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: - -```javascript -HtmlTableFormatter.cssString(); -// .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssString('.chordSheetViewer'); -// .chordSheetViewer .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssObject(); -// '.paragraph': { -// marginBottom: '1em' -// } -``` - -#### Parsing and modifying chords - -```javascript -import { Chord } from 'chordsheetjs'; -``` - -##### Parse - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -``` - -Parse numeric chords (Nashville system): - -```javascript -const chord = Chord.parse('b1sus4/#3'); -``` - -##### Display with #toString - -Use #toString() to convert the chord to a chord string (eg Dsus/F#) - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -chord.toString(); // --> "Ebsus4/Bb" -``` - -##### Clone - -```javascript -var chord2 = chord.clone(); -``` - -##### Normalize - -Normalizes keys B#, E#, Cb and Fb to C, F, B and E - -```javascript -const chord = Chord.parse('E#/B#'); -normalizedChord = chord.normalize(); -normalizedChord.toString(); // --> "F/C" -``` - -##### ~~Switch modifier~~ - -***Deprecated*** - -Convert # to b and vice versa - -```javascript -const chord = parseChord('Eb/Bb'); -const chord2 = chord.switchModifier(); -chord2.toString(); // --> "D#/A#" -``` - -##### Use specific modifier - -Set the chord to a specific modifier (# or b) - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('#'); -chord2.toString(); // --> "D#/A#" -``` - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('b'); -chord2.toString(); // --> "Eb/Bb" -``` - -##### Transpose up - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeUp(); -chord2.toString(); // -> "E/B" -``` - -##### Transpose down - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeDown(); -chord2.toString(); // -> "D/A" -``` - -##### Transpose - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(4); -chord2.toString(); // -> "E/G#" -``` - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(-4); -chord2.toString(); // -> "Ab/C" -``` - -##### Convert numeric chord to chord symbol - -```javascript -const numericChord = Chord.parse('2/4'); -const chordSymbol = numericChord.toChordSymbol('E'); -chordSymbol.toString(); // -> "F#/A" -``` - -### Supported ChordPro directives - -All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually -use those to change the generated output. - -:heavy_check_mark: = supported - -:clock2: = will be supported in a future version - -:heavy_multiplication_x: = currently no plans to support it in the near future - -#### Meta-data directives - -| Directive | Support | -|:---------------- |:------------------:| -| title (short: t) | :heavy_check_mark: | -| subtitle | :heavy_check_mark: | -| artist | :heavy_check_mark: | -| composer | :heavy_check_mark: | -| lyricist | :heavy_check_mark: | -| copyright | :heavy_check_mark: | -| album | :heavy_check_mark: | -| year | :heavy_check_mark: | -| key | :heavy_check_mark: | -| time | :heavy_check_mark: | -| tempo | :heavy_check_mark: | -| duration | :heavy_check_mark: | -| capo | :heavy_check_mark: | -| meta | :heavy_check_mark: | - -#### Formatting directives - -| Directive | Support | -|:-------------------------- |:------------------------:| -| comment (short: c) | :heavy_check_mark: | -| comment_italic (short: ci) | :heavy_multiplication_x: | -| comment_box (short: cb) | :heavy_multiplication_x: | -| chorus | :heavy_multiplication_x: | -| image | :heavy_multiplication_x: | - -#### Environment directives - -| Directive | Support | -|:---------------------------- |:------------------:| -| start_of_chorus (short: soc) | :heavy_check_mark: | -| end_of_chorus (short: eoc) | :heavy_check_mark: | -| start_of_verse | :heavy_check_mark: | -| end_of_verse | :heavy_check_mark: | -| start_of_tab (short: sot) | :heavy_check_mark: | -| end_of_tab (short: eot) | :heavy_check_mark: | -| start_of_grid | :heavy_check_mark: | -| end_of_grid | :heavy_check_mark: | - -#### Chord diagrams - -| Directive | Support | -|:--------- |:------------------:| -| define | :heavy_check_mark: | -| chord | :heavy_check_mark: | - -#### Fonts, sizes and colours - -| Directive | Support | -|:----------- |:------------------------:| -| textfont | :heavy_check_mark: | -| textsize | :heavy_check_mark: | -| textcolour | :heavy_check_mark: | -| chordfont | :heavy_check_mark: | -| chordsize | :heavy_check_mark: | -| chordcolour | :heavy_check_mark: | -| tabfont | :heavy_multiplication_x: | -| tabsize | :heavy_multiplication_x: | -| tabcolour | :heavy_multiplication_x: | - -#### Output related directives - -| Directive | Support | -|:------------------------------ |:------------------------:| -| new_page (short: np) | :heavy_multiplication_x: | -| new_physical_page (short: npp) | :heavy_multiplication_x: | -| column_break (short: cb) | :heavy_multiplication_x: | -| grid (short: g) | :heavy_multiplication_x: | -| no_grid (short: ng) | :heavy_multiplication_x: | -| titles | :heavy_multiplication_x: | -| columns (short: col) | :heavy_multiplication_x: | - -#### Custom extensions - -| Directive | Support | -|:--------- |:------------------:| -| x_ | :heavy_check_mark: | - -### API docs - -Note: all classes, methods and constants that are documented here can be considered public API and will only be -subject to breaking changes between major versions. - -# Classes +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes @@ -134839,7 +125025,372 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. -[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/# Classes +[pr]: https://github.com/martijnversluis/ChordSheetJS/compare/ + +## ChordSheetJS [![Code Climate](https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) + +A JavaScript library for parsing and formatting chord sheets + +**Contents** + +- [Installation](#installation) +- [How to ...?](#how-to-) +- [Supported ChordPro directives](#supported-chordpro-directives) +- [API docs](#api-docs) +- [Contributing](#_mediacontributingmd) + +### Installation + +#### Package managers + +`ChordSheetJS` is on npm, to install run: + +```bash +npm install chordsheetjs +``` + +Load with `import`: + +```javascript +import ChordSheetJS from 'chordsheetjs'; +``` + +or `require()`: + +```javascript +var ChordSheetJS = require('chordsheetjs').default; +``` + +#### Standalone bundle file + +If you're not using a build tool, you can download and use the `bundle.js` from the +[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): + +```html + + +``` + +### How to ...? + +#### Parse chord sheet + +##### Regular chord sheets + +```javascript +const chordSheet = ` + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.ChordsOverWordsParser(); +const song = parser.parse(chordSheet); +``` + +##### Ultimate Guitar chord sheets + +```javascript +const chordSheet = ` +[Chorus] + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.UltimateGuitarParser(); +const song = parser.parse(chordSheet); +``` + +##### Chord pro format + +```javascript +const chordSheet = ` +{title: Let it be} +{subtitle: ChordSheetJS example version} + +{start_of_chorus: Chorus} +Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be +[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] +{end_of_chorus}`.substring(1); + +const parser = new ChordSheetJS.ChordProParser(); +const song = parser.parse(chordSheet); +``` + +#### Display a parsed sheet + +##### Plain text format + +```javascript +const formatter = new ChordSheetJS.TextFormatter(); +const disp = formatter.format(song); +``` + +##### HTML format + +###### Table-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlTableFormatter(); +const disp = formatter.format(song); +``` + +###### Div-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlDivFormatter(); +const disp = formatter.format(song); +``` + +##### Chord pro format + +```javascript +const formatter = new ChordSheetJS.ChordProFormatter(); +const disp = formatter.format(song); +``` + +#### Serialize/deserialize + +Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by +third-party libraries. The serialized object can also be deserialized back into a `Song`. + +```javascript +const serializedSong = new ChordSheetSerializer().serialize(song); +const deserialized = new ChordSheetSerializer().deserialize(serializedSong); +``` + +#### Add styling + +The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: + +```javascript +HtmlTableFormatter.cssString(); +// .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssString('.chordSheetViewer'); +// .chordSheetViewer .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssObject(); +// '.paragraph': { +// marginBottom: '1em' +// } +``` + +#### Parsing and modifying chords + +```javascript +import { Chord } from 'chordsheetjs'; +``` + +##### Parse + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +``` + +Parse numeric chords (Nashville system): + +```javascript +const chord = Chord.parse('b1sus4/#3'); +``` + +##### Display with #toString + +Use #toString() to convert the chord to a chord string (eg Dsus/F#) + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +chord.toString(); // --> "Ebsus4/Bb" +``` + +##### Clone + +```javascript +var chord2 = chord.clone(); +``` + +##### Normalize + +Normalizes keys B#, E#, Cb and Fb to C, F, B and E + +```javascript +const chord = Chord.parse('E#/B#'); +normalizedChord = chord.normalize(); +normalizedChord.toString(); // --> "F/C" +``` + +##### ~~Switch modifier~~ + +***Deprecated*** + +Convert # to b and vice versa + +```javascript +const chord = parseChord('Eb/Bb'); +const chord2 = chord.switchModifier(); +chord2.toString(); // --> "D#/A#" +``` + +##### Use specific modifier + +Set the chord to a specific modifier (# or b) + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('#'); +chord2.toString(); // --> "D#/A#" +``` + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('b'); +chord2.toString(); // --> "Eb/Bb" +``` + +##### Transpose up + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeUp(); +chord2.toString(); // -> "E/B" +``` + +##### Transpose down + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeDown(); +chord2.toString(); // -> "D/A" +``` + +##### Transpose + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(4); +chord2.toString(); // -> "E/G#" +``` + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(-4); +chord2.toString(); // -> "Ab/C" +``` + +##### Convert numeric chord to chord symbol + +```javascript +const numericChord = Chord.parse('2/4'); +const chordSymbol = numericChord.toChordSymbol('E'); +chordSymbol.toString(); // -> "F#/A" +``` + +### Supported ChordPro directives + +All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually +use those to change the generated output. + +:heavy_check_mark: = supported + +:clock2: = will be supported in a future version + +:heavy_multiplication_x: = currently no plans to support it in the near future + +#### Meta-data directives + +| Directive | Support | +|:---------------- |:------------------:| +| title (short: t) | :heavy_check_mark: | +| subtitle | :heavy_check_mark: | +| artist | :heavy_check_mark: | +| composer | :heavy_check_mark: | +| lyricist | :heavy_check_mark: | +| copyright | :heavy_check_mark: | +| album | :heavy_check_mark: | +| year | :heavy_check_mark: | +| key | :heavy_check_mark: | +| time | :heavy_check_mark: | +| tempo | :heavy_check_mark: | +| duration | :heavy_check_mark: | +| capo | :heavy_check_mark: | +| meta | :heavy_check_mark: | + +#### Formatting directives + +| Directive | Support | +|:-------------------------- |:------------------------:| +| comment (short: c) | :heavy_check_mark: | +| comment_italic (short: ci) | :heavy_multiplication_x: | +| comment_box (short: cb) | :heavy_multiplication_x: | +| chorus | :heavy_multiplication_x: | +| image | :heavy_multiplication_x: | + +#### Environment directives + +| Directive | Support | +|:---------------------------- |:------------------:| +| start_of_chorus (short: soc) | :heavy_check_mark: | +| end_of_chorus (short: eoc) | :heavy_check_mark: | +| start_of_verse | :heavy_check_mark: | +| end_of_verse | :heavy_check_mark: | +| start_of_tab (short: sot) | :heavy_check_mark: | +| end_of_tab (short: eot) | :heavy_check_mark: | +| start_of_grid | :heavy_check_mark: | +| end_of_grid | :heavy_check_mark: | + +#### Chord diagrams + +| Directive | Support | +|:--------- |:------------------:| +| define | :heavy_check_mark: | +| chord | :heavy_check_mark: | + +#### Fonts, sizes and colours + +| Directive | Support | +|:----------- |:------------------------:| +| textfont | :heavy_check_mark: | +| textsize | :heavy_check_mark: | +| textcolour | :heavy_check_mark: | +| chordfont | :heavy_check_mark: | +| chordsize | :heavy_check_mark: | +| chordcolour | :heavy_check_mark: | +| tabfont | :heavy_multiplication_x: | +| tabsize | :heavy_multiplication_x: | +| tabcolour | :heavy_multiplication_x: | + +#### Output related directives + +| Directive | Support | +|:------------------------------ |:------------------------:| +| new_page (short: np) | :heavy_multiplication_x: | +| new_physical_page (short: npp) | :heavy_multiplication_x: | +| column_break (short: cb) | :heavy_multiplication_x: | +| grid (short: g) | :heavy_multiplication_x: | +| no_grid (short: ng) | :heavy_multiplication_x: | +| titles | :heavy_multiplication_x: | +| columns (short: col) | :heavy_multiplication_x: | + +#### Custom extensions + +| Directive | Support | +|:--------- |:------------------:| +| x_ | :heavy_check_mark: | + +### API docs + +Note: all classes, methods and constants that are documented here can be considered public API and will only be +subject to breaking changes between major versions. + +# Classes @@ -143925,372 +134476,6 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. [pr]: https://github.com/martijnversluis/ChordSheetJS/compare/ - - - -## ChordSheetJS [![Code Climate](https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) - -A JavaScript library for parsing and formatting chord sheets - -**Contents** - -- [Installation](#installation) -- [How to ...?](#how-to-) -- [Supported ChordPro directives](#supported-chordpro-directives) -- [API docs](#api-docs) -- [Contributing](#_mediacontributingmd) - -### Installation - -#### Package managers - -`ChordSheetJS` is on npm, to install run: - -```bash -npm install chordsheetjs -``` - -Load with `import`: - -```javascript -import ChordSheetJS from 'chordsheetjs'; -``` - -or `require()`: - -```javascript -var ChordSheetJS = require('chordsheetjs').default; -``` - -#### Standalone bundle file - -If you're not using a build tool, you can download and use the `bundle.js` from the -[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): - -```html - - -``` - -### How to ...? - -#### Parse chord sheet - -##### Regular chord sheets - -```javascript -const chordSheet = ` - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.ChordsOverWordsParser(); -const song = parser.parse(chordSheet); -``` - -##### Ultimate Guitar chord sheets - -```javascript -const chordSheet = ` -[Chorus] - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.UltimateGuitarParser(); -const song = parser.parse(chordSheet); -``` - -##### Chord pro format - -```javascript -const chordSheet = ` -{title: Let it be} -{subtitle: ChordSheetJS example version} - -{start_of_chorus: Chorus} -Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be -[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] -{end_of_chorus}`.substring(1); - -const parser = new ChordSheetJS.ChordProParser(); -const song = parser.parse(chordSheet); -``` - -#### Display a parsed sheet - -##### Plain text format - -```javascript -const formatter = new ChordSheetJS.TextFormatter(); -const disp = formatter.format(song); -``` - -##### HTML format - -###### Table-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlTableFormatter(); -const disp = formatter.format(song); -``` - -###### Div-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlDivFormatter(); -const disp = formatter.format(song); -``` - -##### Chord pro format - -```javascript -const formatter = new ChordSheetJS.ChordProFormatter(); -const disp = formatter.format(song); -``` - -#### Serialize/deserialize - -Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by -third-party libraries. The serialized object can also be deserialized back into a `Song`. - -```javascript -const serializedSong = new ChordSheetSerializer().serialize(song); -const deserialized = new ChordSheetSerializer().deserialize(serializedSong); -``` - -#### Add styling - -The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: - -```javascript -HtmlTableFormatter.cssString(); -// .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssString('.chordSheetViewer'); -// .chordSheetViewer .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssObject(); -// '.paragraph': { -// marginBottom: '1em' -// } -``` - -#### Parsing and modifying chords - -```javascript -import { Chord } from 'chordsheetjs'; -``` - -##### Parse - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -``` - -Parse numeric chords (Nashville system): - -```javascript -const chord = Chord.parse('b1sus4/#3'); -``` - -##### Display with #toString - -Use #toString() to convert the chord to a chord string (eg Dsus/F#) - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -chord.toString(); // --> "Ebsus4/Bb" -``` - -##### Clone - -```javascript -var chord2 = chord.clone(); -``` - -##### Normalize - -Normalizes keys B#, E#, Cb and Fb to C, F, B and E - -```javascript -const chord = Chord.parse('E#/B#'); -normalizedChord = chord.normalize(); -normalizedChord.toString(); // --> "F/C" -``` - -##### ~~Switch modifier~~ - -***Deprecated*** - -Convert # to b and vice versa - -```javascript -const chord = parseChord('Eb/Bb'); -const chord2 = chord.switchModifier(); -chord2.toString(); // --> "D#/A#" -``` - -##### Use specific modifier - -Set the chord to a specific modifier (# or b) - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('#'); -chord2.toString(); // --> "D#/A#" -``` - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('b'); -chord2.toString(); // --> "Eb/Bb" -``` - -##### Transpose up - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeUp(); -chord2.toString(); // -> "E/B" -``` - -##### Transpose down - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeDown(); -chord2.toString(); // -> "D/A" -``` - -##### Transpose - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(4); -chord2.toString(); // -> "E/G#" -``` - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(-4); -chord2.toString(); // -> "Ab/C" -``` - -##### Convert numeric chord to chord symbol - -```javascript -const numericChord = Chord.parse('2/4'); -const chordSymbol = numericChord.toChordSymbol('E'); -chordSymbol.toString(); // -> "F#/A" -``` - -### Supported ChordPro directives - -All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually -use those to change the generated output. - -:heavy_check_mark: = supported - -:clock2: = will be supported in a future version - -:heavy_multiplication_x: = currently no plans to support it in the near future - -#### Meta-data directives - -| Directive | Support | -|:---------------- |:------------------:| -| title (short: t) | :heavy_check_mark: | -| subtitle | :heavy_check_mark: | -| artist | :heavy_check_mark: | -| composer | :heavy_check_mark: | -| lyricist | :heavy_check_mark: | -| copyright | :heavy_check_mark: | -| album | :heavy_check_mark: | -| year | :heavy_check_mark: | -| key | :heavy_check_mark: | -| time | :heavy_check_mark: | -| tempo | :heavy_check_mark: | -| duration | :heavy_check_mark: | -| capo | :heavy_check_mark: | -| meta | :heavy_check_mark: | - -#### Formatting directives - -| Directive | Support | -|:-------------------------- |:------------------------:| -| comment (short: c) | :heavy_check_mark: | -| comment_italic (short: ci) | :heavy_multiplication_x: | -| comment_box (short: cb) | :heavy_multiplication_x: | -| chorus | :heavy_multiplication_x: | -| image | :heavy_multiplication_x: | - -#### Environment directives - -| Directive | Support | -|:---------------------------- |:------------------:| -| start_of_chorus (short: soc) | :heavy_check_mark: | -| end_of_chorus (short: eoc) | :heavy_check_mark: | -| start_of_verse | :heavy_check_mark: | -| end_of_verse | :heavy_check_mark: | -| start_of_tab (short: sot) | :heavy_check_mark: | -| end_of_tab (short: eot) | :heavy_check_mark: | -| start_of_grid | :heavy_check_mark: | -| end_of_grid | :heavy_check_mark: | - -#### Chord diagrams - -| Directive | Support | -|:--------- |:------------------:| -| define | :heavy_check_mark: | -| chord | :heavy_check_mark: | - -#### Fonts, sizes and colours - -| Directive | Support | -|:----------- |:------------------------:| -| textfont | :heavy_check_mark: | -| textsize | :heavy_check_mark: | -| textcolour | :heavy_check_mark: | -| chordfont | :heavy_check_mark: | -| chordsize | :heavy_check_mark: | -| chordcolour | :heavy_check_mark: | -| tabfont | :heavy_multiplication_x: | -| tabsize | :heavy_multiplication_x: | -| tabcolour | :heavy_multiplication_x: | - -#### Output related directives - -| Directive | Support | -|:------------------------------ |:------------------------:| -| new_page (short: np) | :heavy_multiplication_x: | -| new_physical_page (short: npp) | :heavy_multiplication_x: | -| column_break (short: cb) | :heavy_multiplication_x: | -| grid (short: g) | :heavy_multiplication_x: | -| no_grid (short: ng) | :heavy_multiplication_x: | -| titles | :heavy_multiplication_x: | -| columns (short: col) | :heavy_multiplication_x: | - -#### Custom extensions - -| Directive | Support | -|:--------- |:------------------:| -| x_ | :heavy_check_mark: | - -### API docs - -Note: all classes, methods and constants that are documented here can be considered public API and will only be -subject to breaking changes between major versions. - # Classes @@ -144341,7 +134526,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L344) +[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L344) ### Properties @@ -144355,7 +134540,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L24) +[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L24) *** @@ -144369,7 +134554,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L26) +[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L26) *** @@ -144383,7 +134568,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L28) +[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L28) ### Methods @@ -144399,7 +134584,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L60) +[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L60) *** @@ -144417,7 +134602,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L374) +[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L374) *** @@ -144433,7 +134618,7 @@ Determines whether the chord is a chord solfege ##### Defined in -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L160) +[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L160) *** @@ -144449,7 +134634,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L110) +[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L110) *** @@ -144463,7 +134648,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L432) +[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L432) *** @@ -144479,7 +134664,7 @@ Determines whether the chord is a numeral ##### Defined in -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L246) +[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L246) *** @@ -144495,7 +134680,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L227) +[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L227) *** @@ -144509,7 +134694,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L436) +[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L436) *** @@ -144560,7 +134745,7 @@ the normalized chord ##### Defined in -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L294) +[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L294) *** @@ -144578,7 +134763,7 @@ the normalized chord ##### Defined in -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L442) +[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L442) *** @@ -144605,7 +134790,7 @@ the chord solfege ##### Defined in -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L122) +[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L122) *** @@ -144634,7 +134819,7 @@ the chord solfege string ##### Defined in -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L152) +[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L152) *** @@ -144661,7 +134846,7 @@ the chord symbol ##### Defined in -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L72) +[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L72) *** @@ -144690,7 +134875,7 @@ the chord symbol string ##### Defined in -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L102) +[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L102) *** @@ -144715,7 +134900,7 @@ the numeral chord ##### Defined in -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L194) +[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L194) *** @@ -144742,7 +134927,7 @@ the numeral chord string ##### Defined in -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L219) +[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L219) *** @@ -144767,7 +134952,7 @@ the numeric chord ##### Defined in -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L170) +[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L170) *** @@ -144794,7 +134979,7 @@ the numeric chord string ##### Defined in -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L238) +[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L238) *** @@ -144823,7 +135008,7 @@ the chord string ##### Defined in -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L257) +[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L257) *** @@ -144847,7 +135032,7 @@ the new, transposed chord ##### Defined in -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L340) +[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L340) *** @@ -144865,7 +135050,7 @@ the new, transposed chord ##### Defined in -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L331) +[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L331) *** @@ -144883,7 +135068,7 @@ the new, transposed chord ##### Defined in -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L323) +[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L323) *** @@ -144907,7 +135092,7 @@ the new, changed chord ##### Defined in -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L315) +[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L315) *** @@ -144933,7 +135118,7 @@ the new, changed chord ##### Defined in -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L407) +[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L407) *** @@ -144961,7 +135146,7 @@ the new, changed chord ##### Defined in -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L380) +[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L380) *** @@ -144984,7 +135169,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L36) +[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L36) *** @@ -145002,7 +135187,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L44) +[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord.ts#L44) @@ -145046,7 +135231,7 @@ A chord definitions overrides a previous chord definition for the exact same cho ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L47) +[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L47) ### Properties @@ -145059,7 +135244,7 @@ The offset must be 1 or higher. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L24) +[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L24) *** @@ -145076,7 +135261,7 @@ Note that the values -, x, X, and N are used to designate a string without finge ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L45) +[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L45) *** @@ -145092,7 +135277,7 @@ the topmost fret position is 1. With base-fret 3, fret position 1 indicates the ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L34) +[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L34) *** @@ -145104,7 +135289,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L17) +[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L17) ### Methods @@ -145118,7 +135303,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L54) +[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/chord_definition.ts#L54) @@ -145160,7 +135345,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -145170,7 +135355,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -145180,7 +135365,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -145190,7 +135375,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -145208,7 +135393,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -145224,7 +135409,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -145240,7 +135425,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -145264,7 +135449,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -145282,7 +135467,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -145300,7 +135485,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -145314,7 +135499,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -145338,7 +135523,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -145356,7 +135541,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -145398,7 +135583,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) ### Properties @@ -145412,7 +135597,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) ### Methods @@ -145436,7 +135621,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L24) *** @@ -145454,7 +135639,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L132) *** @@ -145472,7 +135657,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L139) *** @@ -145490,7 +135675,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L158) *** @@ -145508,7 +135693,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L162) *** @@ -145526,7 +135711,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L112) *** @@ -145544,7 +135729,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L104) *** @@ -145564,7 +135749,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L38) *** @@ -145584,7 +135769,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L32) *** @@ -145604,7 +135789,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L62) *** @@ -145622,7 +135807,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L124) *** @@ -145640,7 +135825,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L78) *** @@ -145658,7 +135843,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chord_pro_formatter.ts#L96) @@ -145690,7 +135875,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -145710,7 +135895,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -145742,7 +135927,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_pro_parser.ts#L36) @@ -145791,7 +135976,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -145801,7 +135986,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L31) *** @@ -145811,7 +135996,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L35) *** @@ -145821,7 +136006,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L37) *** @@ -145831,7 +136016,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L33) *** @@ -145841,7 +136026,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L23) *** @@ -145851,7 +136036,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L21) *** @@ -145861,7 +136046,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L25) *** @@ -145871,7 +136056,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L27) *** @@ -145881,7 +136066,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -145901,7 +136086,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L160) *** @@ -145915,7 +136100,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L82) *** @@ -145929,7 +136114,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L177) *** @@ -145943,7 +136128,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L124) *** @@ -145963,7 +136148,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L107) *** @@ -145995,7 +136180,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L70) *** @@ -146013,7 +136198,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L84) *** @@ -146033,7 +136218,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L128) *** @@ -146051,7 +136236,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L94) *** @@ -146071,7 +136256,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L146) *** @@ -146085,7 +136270,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L118) *** @@ -146103,7 +136288,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L173) @@ -146135,7 +136320,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L40) *** @@ -146145,7 +136330,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L42) ### Methods @@ -146169,7 +136354,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L151) *** @@ -146187,7 +136372,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L156) *** @@ -146205,7 +136390,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L201) *** @@ -146223,7 +136408,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L184) *** @@ -146241,7 +136426,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L234) *** @@ -146259,7 +136444,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L259) *** @@ -146277,7 +136462,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L191) *** @@ -146295,7 +136480,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L213) *** @@ -146313,7 +136498,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L239) *** @@ -146336,7 +136521,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L49) *** @@ -146354,7 +136539,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L91) *** @@ -146392,7 +136577,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L114) *** @@ -146410,7 +136595,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L142) *** @@ -146428,7 +136613,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L138) *** @@ -146446,7 +136631,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L63) *** @@ -146464,7 +136649,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L56) *** @@ -146482,7 +136667,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L134) *** @@ -146500,7 +136685,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L100) *** @@ -146518,7 +136703,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet_serializer.ts#L124) @@ -146560,7 +136745,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) ### Properties @@ -146574,7 +136759,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) *** @@ -146584,7 +136769,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -146604,7 +136789,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -146628,7 +136813,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -146642,7 +136827,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -146664,7 +136849,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -146686,7 +136871,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -146706,7 +136891,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -146726,7 +136911,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -146746,7 +136931,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -146768,7 +136953,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -146788,7 +136973,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -146802,7 +136987,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -146822,7 +137007,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/chords_over_words_formatter.ts#L114) @@ -146889,7 +137074,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -146909,7 +137094,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -146941,7 +137126,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chords_over_words_parser.ts#L71) @@ -146971,7 +137156,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L7) ### Properties @@ -146981,7 +137166,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L5) ### Methods @@ -146997,7 +137182,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L23) *** @@ -147013,7 +137198,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L15) *** @@ -147027,7 +137212,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/comment.ts#L27) @@ -147065,7 +137250,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -147079,7 +137264,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L6) *** @@ -147089,7 +137274,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -147103,7 +137288,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L4) *** @@ -147117,7 +137302,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L8) *** @@ -147127,7 +137312,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -147145,7 +137330,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -147169,7 +137354,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -147183,7 +137368,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/composite.ts#L21) @@ -147224,7 +137409,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) ### Properties @@ -147234,7 +137419,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) @@ -147276,7 +137461,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) ### Properties @@ -147290,7 +137475,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) ### Accessors @@ -147321,7 +137506,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L66) *** @@ -147341,7 +137526,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_div_formatter.ts#L44) *** @@ -147361,7 +137546,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -147395,7 +137580,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L50) *** @@ -147423,7 +137608,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L26) @@ -147470,7 +137655,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) ### Properties @@ -147484,7 +137669,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) ### Accessors @@ -147511,7 +137696,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L66) *** @@ -147527,7 +137712,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L70) *** @@ -147543,7 +137728,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L72) ### Methods @@ -147573,7 +137758,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L50) *** @@ -147597,7 +137782,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L26) @@ -147640,7 +137825,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) ### Properties @@ -147654,7 +137839,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) ### Accessors @@ -147685,7 +137870,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L66) *** @@ -147705,7 +137890,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_table_formatter.ts#L45) *** @@ -147725,7 +137910,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -147759,7 +137944,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L50) *** @@ -147787,7 +137972,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/html_formatter.ts#L26) @@ -147839,7 +138024,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L249) ### Properties @@ -147853,7 +138038,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L51) *** @@ -147867,7 +138052,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L70) *** @@ -147881,7 +138066,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L55) *** @@ -147895,7 +138080,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L53) *** @@ -147905,7 +138090,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L74) *** @@ -147919,7 +138104,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L76) *** @@ -147933,7 +138118,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L72) *** @@ -147947,7 +138132,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L57) ### Accessors @@ -147963,7 +138148,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L285) *** @@ -147979,7 +138164,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L519) *** @@ -147995,7 +138180,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L490) *** @@ -148011,7 +138196,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L301) *** @@ -148027,7 +138212,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L305) *** @@ -148043,7 +138228,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L59) ### Methods @@ -148057,7 +138242,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L595) *** @@ -148071,7 +138256,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L603) *** @@ -148089,7 +138274,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L558) *** @@ -148103,7 +138288,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L317) *** @@ -148121,7 +138306,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L280) *** @@ -148139,7 +138324,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L410) *** @@ -148157,7 +138342,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L390) *** @@ -148171,7 +138356,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L402) *** @@ -148185,7 +138370,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L398) *** @@ -148199,7 +138384,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L293) *** @@ -148213,7 +138398,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L406) *** @@ -148227,7 +138412,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L394) *** @@ -148241,7 +138426,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L297) *** @@ -148255,7 +138440,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L630) *** @@ -148273,7 +138458,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L644) *** @@ -148291,7 +138476,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L611) *** @@ -148309,7 +138494,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L362) *** @@ -148327,7 +138512,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L386) *** @@ -148345,7 +138530,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L342) *** @@ -148363,7 +138548,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L382) *** @@ -148377,7 +138562,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L309) *** @@ -148395,7 +138580,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L456) *** @@ -148413,7 +138598,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L476) *** @@ -148431,7 +138616,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L431) *** @@ -148449,7 +138634,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L452) *** @@ -148473,7 +138658,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L480) *** @@ -148491,7 +138676,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L544) *** @@ -148505,7 +138690,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L582) *** @@ -148519,7 +138704,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L568) *** @@ -148537,7 +138722,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L625) *** @@ -148565,7 +138750,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L245) *** @@ -148585,7 +138770,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L419) *** @@ -148605,7 +138790,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L152) *** @@ -148627,7 +138812,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L193) *** @@ -148649,7 +138834,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L161) *** @@ -148667,7 +138852,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L78) *** @@ -148687,7 +138872,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L93) *** @@ -148705,7 +138890,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L209) *** @@ -148731,7 +138916,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L108) *** @@ -148749,7 +138934,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L617) *** @@ -148773,7 +138958,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L176) *** @@ -148791,7 +138976,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L235) *** @@ -148809,7 +138994,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L217) *** @@ -148827,7 +139012,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/key.ts#L225) @@ -148861,7 +139046,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L62) ### Properties @@ -148875,7 +139060,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L60) *** @@ -148885,7 +139070,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L38) *** @@ -148897,7 +139082,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L29) *** @@ -148907,7 +139092,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L40) *** @@ -148917,7 +139102,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L44) *** @@ -148931,7 +139116,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L52) *** @@ -148941,7 +139126,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L42) *** @@ -148954,7 +139139,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L36) ### Accessors @@ -148970,7 +139155,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L223) ### Methods @@ -148990,7 +139175,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L174) *** @@ -149008,7 +139193,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L207) *** @@ -149030,7 +139215,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L83) *** @@ -149050,7 +139235,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L201) *** @@ -149068,7 +139253,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L191) *** @@ -149084,7 +139269,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L107) *** @@ -149098,7 +139283,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L185) *** @@ -149116,7 +139301,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L170) *** @@ -149132,7 +139317,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L99) *** @@ -149148,7 +139333,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L129) *** @@ -149164,7 +139349,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L137) *** @@ -149180,7 +139365,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L71) *** @@ -149196,7 +139381,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L145) *** @@ -149210,7 +139395,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L75) *** @@ -149224,7 +139409,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L241) *** @@ -149238,7 +139423,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L237) *** @@ -149254,7 +139439,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L153) *** @@ -149270,7 +139455,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L161) *** @@ -149288,7 +139473,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L196) *** @@ -149306,7 +139491,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L111) *** @@ -149328,7 +139513,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/line.ts#L213) @@ -149364,7 +139549,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -149378,7 +139563,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L6) *** @@ -149392,7 +139577,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L4) *** @@ -149406,7 +139591,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L8) *** @@ -149416,7 +139601,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -149434,7 +139619,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -149452,7 +139637,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -149466,7 +139651,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/literal.ts#L15) @@ -149509,7 +139694,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L28) ### Properties @@ -149519,7 +139704,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -149539,7 +139724,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -149559,7 +139744,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -149579,7 +139764,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -149599,7 +139784,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -149619,7 +139804,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -149639,7 +139824,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -149659,7 +139844,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -149679,7 +139864,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -149699,7 +139884,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -149719,7 +139904,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -149739,7 +139924,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -149759,7 +139944,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -149779,7 +139964,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -149799,7 +139984,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L46) *** @@ -149813,7 +139998,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L178) *** @@ -149831,7 +140016,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L174) *** @@ -149849,7 +140034,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L42) *** @@ -149890,7 +140075,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L109) *** @@ -149908,7 +140093,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L150) *** @@ -149930,7 +140115,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L78) *** @@ -149952,7 +140137,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L82) *** @@ -149970,7 +140155,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L36) *** @@ -149988,7 +140173,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L138) *** @@ -150008,7 +140193,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata.ts#L70) @@ -150044,7 +140229,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -150062,7 +140247,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L52) *** @@ -150081,7 +140266,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L68) *** @@ -150100,7 +140285,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -150118,7 +140303,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L18) *** @@ -150138,7 +140323,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L103) *** @@ -150152,7 +140337,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L107) *** @@ -150173,7 +140358,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/paragraph.ts#L28) @@ -150207,7 +140392,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/soft_line_break.ts#L2) @@ -150249,7 +140434,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L54) ### Properties @@ -150259,7 +140444,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L44) *** @@ -150269,7 +140454,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L46) *** @@ -150283,7 +140468,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L35) *** @@ -150296,7 +140481,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L42) *** @@ -150306,7 +140491,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L48) ### Accessors @@ -150326,7 +140511,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -150346,7 +140531,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -150367,7 +140552,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L64) *** @@ -150390,7 +140575,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L78) *** @@ -150410,7 +140595,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -150430,7 +140615,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -150450,7 +140635,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -150470,7 +140655,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -150488,7 +140673,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L156) *** @@ -150508,7 +140693,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -150528,7 +140713,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -150548,7 +140733,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L148) *** @@ -150568,7 +140753,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -150588,7 +140773,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -150608,7 +140793,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -150628,7 +140813,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -150648,7 +140833,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -150666,7 +140851,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L380) *** @@ -150693,7 +140878,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L304) *** @@ -150722,7 +140907,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L357) *** @@ -150740,7 +140925,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L186) *** @@ -150758,7 +140943,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L417) *** @@ -150783,7 +140968,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L453) *** @@ -150801,7 +140986,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L427) *** @@ -150823,7 +141008,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L194) *** @@ -150845,7 +141030,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L198) *** @@ -150863,7 +141048,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L164) *** @@ -150900,7 +141085,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L398) *** @@ -150937,7 +141122,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L485) *** @@ -150951,7 +141136,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L332) *** @@ -150969,7 +141154,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L86) *** @@ -150997,7 +141182,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L225) *** @@ -151025,7 +141210,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L211) *** @@ -151045,7 +141230,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L190) *** @@ -151080,7 +141265,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L252) *** @@ -151111,7 +141296,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L292) *** @@ -151142,7 +141327,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L279) *** @@ -151166,7 +141351,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/song.ts#L322) @@ -151208,7 +141393,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L412) ### Properties @@ -151218,7 +141403,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L402) *** @@ -151228,7 +141413,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L406) *** @@ -151238,7 +141423,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L404) *** @@ -151248,7 +141433,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L408) *** @@ -151258,7 +141443,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L410) *** @@ -151272,7 +141457,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L6) *** @@ -151286,7 +141471,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L4) *** @@ -151300,7 +141485,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -151332,7 +141517,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L491) *** @@ -151352,7 +141537,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L500) *** @@ -151384,7 +141569,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L513) ### Methods @@ -151406,7 +141591,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L555) *** @@ -151425,7 +141610,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L539) *** @@ -151441,7 +141626,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L521) *** @@ -151455,7 +141640,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L477) *** @@ -151471,7 +141656,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L547) *** @@ -151487,7 +141672,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L529) *** @@ -151501,7 +141686,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L465) *** @@ -151515,7 +141700,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L473) *** @@ -151529,7 +141714,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L469) *** @@ -151549,7 +141734,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L563) *** @@ -151565,7 +141750,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L559) *** @@ -151583,7 +141768,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L437) *** @@ -151601,7 +141786,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L455) *** @@ -151621,7 +141806,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/tag.ts#L445) @@ -151657,7 +141842,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -151671,7 +141856,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L6) *** @@ -151681,7 +141866,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -151695,7 +141880,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L4) *** @@ -151709,7 +141894,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/ast_component.ts#L8) *** @@ -151719,7 +141904,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -151729,7 +141914,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -151739,7 +141924,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -151757,7 +141942,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -151791,7 +141976,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -151813,7 +141998,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -151833,7 +142018,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -151853,7 +142038,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -151867,7 +142052,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -151909,7 +142094,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L26) ### Properties @@ -151923,7 +142108,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/formatter.ts#L7) *** @@ -151933,7 +142118,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L17) ### Methods @@ -151953,7 +142138,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L102) *** @@ -151977,7 +142162,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L24) *** @@ -151991,7 +142176,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L33) *** @@ -152013,7 +142198,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L161) *** @@ -152035,7 +142220,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L129) *** @@ -152055,7 +142240,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L66) *** @@ -152075,7 +142260,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L142) *** @@ -152095,7 +142280,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L94) *** @@ -152117,7 +142302,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L150) *** @@ -152137,7 +142322,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L53) *** @@ -152151,7 +142336,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L44) *** @@ -152169,7 +142354,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L86) *** @@ -152187,7 +142372,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/formatter/text_formatter.ts#L78) @@ -152234,7 +142419,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -152248,7 +142433,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L31) *** @@ -152262,7 +142447,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L35) *** @@ -152272,7 +142457,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -152286,7 +142471,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L37) *** @@ -152300,7 +142485,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L33) *** @@ -152314,7 +142499,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L23) *** @@ -152328,7 +142513,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L21) *** @@ -152342,7 +142527,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L25) *** @@ -152356,7 +142541,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L27) *** @@ -152370,7 +142555,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -152394,7 +142579,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L160) *** @@ -152412,7 +142597,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -152432,7 +142617,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -152450,7 +142635,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L177) *** @@ -152468,7 +142653,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L124) *** @@ -152492,7 +142677,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L107) *** @@ -152506,7 +142691,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -152542,7 +142727,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L70) *** @@ -152564,7 +142749,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -152588,7 +142773,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L128) *** @@ -152610,7 +142795,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L94) *** @@ -152634,7 +142819,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L146) *** @@ -152652,7 +142837,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L118) *** @@ -152674,7 +142859,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/chord_sheet_parser.ts#L173) *** @@ -152688,7 +142873,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -152708,7 +142893,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/parser/ultimate_guitar_parser.ts#L87) @@ -152783,7 +142968,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L62) @@ -152803,7 +142988,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L13) @@ -152823,7 +143008,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L27) @@ -152843,7 +143028,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L55) @@ -152863,7 +143048,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L34) @@ -152879,7 +143064,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L77) @@ -152895,7 +143080,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L76) @@ -152911,7 +143096,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L78) @@ -152927,7 +143112,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L75) @@ -152947,7 +143132,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L41) @@ -152967,7 +143152,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/constants.ts#L48) @@ -153097,7 +143282,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/index.ts#L75) @@ -153309,7 +143494,7 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/b22132be8dca0b2d45e734d44c483517a79d6e45/src/template_helpers.ts#L98) # Media @@ -153377,6 +143562,372 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. [pr]: https://github.com/martijnversluis/ChordSheetJS/compare/ + + + +## ChordSheetJS [![Code Climate](https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) + +A JavaScript library for parsing and formatting chord sheets + +**Contents** + +- [Installation](#installation) +- [How to ...?](#how-to-) +- [Supported ChordPro directives](#supported-chordpro-directives) +- [API docs](#api-docs) +- [Contributing](#_mediacontributingmd) + +### Installation + +#### Package managers + +`ChordSheetJS` is on npm, to install run: + +```bash +npm install chordsheetjs +``` + +Load with `import`: + +```javascript +import ChordSheetJS from 'chordsheetjs'; +``` + +or `require()`: + +```javascript +var ChordSheetJS = require('chordsheetjs').default; +``` + +#### Standalone bundle file + +If you're not using a build tool, you can download and use the `bundle.js` from the +[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): + +```html + + +``` + +### How to ...? + +#### Parse chord sheet + +##### Regular chord sheets + +```javascript +const chordSheet = ` + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.ChordsOverWordsParser(); +const song = parser.parse(chordSheet); +``` + +##### Ultimate Guitar chord sheets + +```javascript +const chordSheet = ` +[Chorus] + Am C/G F C +Let it be, let it be, let it be, let it be +C G F C/E Dm C +Whisper words of wisdom, let it be`.substring(1); + +const parser = new ChordSheetJS.UltimateGuitarParser(); +const song = parser.parse(chordSheet); +``` + +##### Chord pro format + +```javascript +const chordSheet = ` +{title: Let it be} +{subtitle: ChordSheetJS example version} + +{start_of_chorus: Chorus} +Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be +[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] +{end_of_chorus}`.substring(1); + +const parser = new ChordSheetJS.ChordProParser(); +const song = parser.parse(chordSheet); +``` + +#### Display a parsed sheet + +##### Plain text format + +```javascript +const formatter = new ChordSheetJS.TextFormatter(); +const disp = formatter.format(song); +``` + +##### HTML format + +###### Table-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlTableFormatter(); +const disp = formatter.format(song); +``` + +###### Div-based layout + +```javascript +const formatter = new ChordSheetJS.HtmlDivFormatter(); +const disp = formatter.format(song); +``` + +##### Chord pro format + +```javascript +const formatter = new ChordSheetJS.ChordProFormatter(); +const disp = formatter.format(song); +``` + +#### Serialize/deserialize + +Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by +third-party libraries. The serialized object can also be deserialized back into a `Song`. + +```javascript +const serializedSong = new ChordSheetSerializer().serialize(song); +const deserialized = new ChordSheetSerializer().deserialize(serializedSong); +``` + +#### Add styling + +The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: + +```javascript +HtmlTableFormatter.cssString(); +// .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssString('.chordSheetViewer'); +// .chordSheetViewer .paragraph { +// margin-bottom: 1em; +// } + +HtmlTableFormatter.cssObject(); +// '.paragraph': { +// marginBottom: '1em' +// } +``` + +#### Parsing and modifying chords + +```javascript +import { Chord } from 'chordsheetjs'; +``` + +##### Parse + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +``` + +Parse numeric chords (Nashville system): + +```javascript +const chord = Chord.parse('b1sus4/#3'); +``` + +##### Display with #toString + +Use #toString() to convert the chord to a chord string (eg Dsus/F#) + +```javascript +const chord = Chord.parse('Ebsus4/Bb'); +chord.toString(); // --> "Ebsus4/Bb" +``` + +##### Clone + +```javascript +var chord2 = chord.clone(); +``` + +##### Normalize + +Normalizes keys B#, E#, Cb and Fb to C, F, B and E + +```javascript +const chord = Chord.parse('E#/B#'); +normalizedChord = chord.normalize(); +normalizedChord.toString(); // --> "F/C" +``` + +##### ~~Switch modifier~~ + +***Deprecated*** + +Convert # to b and vice versa + +```javascript +const chord = parseChord('Eb/Bb'); +const chord2 = chord.switchModifier(); +chord2.toString(); // --> "D#/A#" +``` + +##### Use specific modifier + +Set the chord to a specific modifier (# or b) + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('#'); +chord2.toString(); // --> "D#/A#" +``` + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.useModifier('b'); +chord2.toString(); // --> "Eb/Bb" +``` + +##### Transpose up + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeUp(); +chord2.toString(); // -> "E/B" +``` + +##### Transpose down + +```javascript +const chord = Chord.parse('Eb/Bb'); +const chord2 = chord.transposeDown(); +chord2.toString(); // -> "D/A" +``` + +##### Transpose + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(4); +chord2.toString(); // -> "E/G#" +``` + +```javascript +const chord = Chord.parse('C/E'); +const chord2 = chord.transpose(-4); +chord2.toString(); // -> "Ab/C" +``` + +##### Convert numeric chord to chord symbol + +```javascript +const numericChord = Chord.parse('2/4'); +const chordSymbol = numericChord.toChordSymbol('E'); +chordSymbol.toString(); // -> "F#/A" +``` + +### Supported ChordPro directives + +All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually +use those to change the generated output. + +:heavy_check_mark: = supported + +:clock2: = will be supported in a future version + +:heavy_multiplication_x: = currently no plans to support it in the near future + +#### Meta-data directives + +| Directive | Support | +|:---------------- |:------------------:| +| title (short: t) | :heavy_check_mark: | +| subtitle | :heavy_check_mark: | +| artist | :heavy_check_mark: | +| composer | :heavy_check_mark: | +| lyricist | :heavy_check_mark: | +| copyright | :heavy_check_mark: | +| album | :heavy_check_mark: | +| year | :heavy_check_mark: | +| key | :heavy_check_mark: | +| time | :heavy_check_mark: | +| tempo | :heavy_check_mark: | +| duration | :heavy_check_mark: | +| capo | :heavy_check_mark: | +| meta | :heavy_check_mark: | + +#### Formatting directives + +| Directive | Support | +|:-------------------------- |:------------------------:| +| comment (short: c) | :heavy_check_mark: | +| comment_italic (short: ci) | :heavy_multiplication_x: | +| comment_box (short: cb) | :heavy_multiplication_x: | +| chorus | :heavy_multiplication_x: | +| image | :heavy_multiplication_x: | + +#### Environment directives + +| Directive | Support | +|:---------------------------- |:------------------:| +| start_of_chorus (short: soc) | :heavy_check_mark: | +| end_of_chorus (short: eoc) | :heavy_check_mark: | +| start_of_verse | :heavy_check_mark: | +| end_of_verse | :heavy_check_mark: | +| start_of_tab (short: sot) | :heavy_check_mark: | +| end_of_tab (short: eot) | :heavy_check_mark: | +| start_of_grid | :heavy_check_mark: | +| end_of_grid | :heavy_check_mark: | + +#### Chord diagrams + +| Directive | Support | +|:--------- |:------------------:| +| define | :heavy_check_mark: | +| chord | :heavy_check_mark: | + +#### Fonts, sizes and colours + +| Directive | Support | +|:----------- |:------------------------:| +| textfont | :heavy_check_mark: | +| textsize | :heavy_check_mark: | +| textcolour | :heavy_check_mark: | +| chordfont | :heavy_check_mark: | +| chordsize | :heavy_check_mark: | +| chordcolour | :heavy_check_mark: | +| tabfont | :heavy_multiplication_x: | +| tabsize | :heavy_multiplication_x: | +| tabcolour | :heavy_multiplication_x: | + +#### Output related directives + +| Directive | Support | +|:------------------------------ |:------------------------:| +| new_page (short: np) | :heavy_multiplication_x: | +| new_physical_page (short: npp) | :heavy_multiplication_x: | +| column_break (short: cb) | :heavy_multiplication_x: | +| grid (short: g) | :heavy_multiplication_x: | +| no_grid (short: ng) | :heavy_multiplication_x: | +| titles | :heavy_multiplication_x: | +| columns (short: col) | :heavy_multiplication_x: | + +#### Custom extensions + +| Directive | Support | +|:--------- |:------------------:| +| x_ | :heavy_check_mark: | + +### API docs + +Note: all classes, methods and constants that are documented here can be considered public API and will only be +subject to breaking changes between major versions. + # Classes @@ -162411,7 +152962,7 @@ I love receiving pull requests from everyone! Please read this short document be #### `README.md` Are you trying to make changes to `README.md`? Wait! `README.md` is a auto-generated file. - - to make changes in the first part, go to [INTRO.md](#_mediaintromd) + - to make changes in the first part, go to [INTRO.md](INTRO.md) - the api docs are generated from JSdoc comment embedded in the code, so changing those comments will result in API doc changes. @@ -162464,372 +153015,6 @@ Make your change. Add tests for your change. Make the tests pass: Push to your fork and [submit a pull request][pr]. [pr]: https://github.com/martijnversluis/ChordSheetJS/compare/ - - - -## ChordSheetJS [![Code Climate](https://codeclimate.com/github/martijnversluis/ChordSheetJS/badges/gpa.svg)](https://codeclimate.com/github/martijnversluis/ChordSheetJS) [![CI](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/ci.yml?query=branch%3Amaster) [![Release](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml/badge.svg)](https://github.com/martijnversluis/ChordSheetJS/actions/workflows/release.yml) - -A JavaScript library for parsing and formatting chord sheets - -**Contents** - -- [Installation](#installation) -- [How to ...?](#how-to-) -- [Supported ChordPro directives](#supported-chordpro-directives) -- [API docs](#api-docs) -- [Contributing](#_mediacontributingmd) - -### Installation - -#### Package managers - -`ChordSheetJS` is on npm, to install run: - -```bash -npm install chordsheetjs -``` - -Load with `import`: - -```javascript -import ChordSheetJS from 'chordsheetjs'; -``` - -or `require()`: - -```javascript -var ChordSheetJS = require('chordsheetjs').default; -``` - -#### Standalone bundle file - -If you're not using a build tool, you can download and use the `bundle.js` from the -[latest release](https://github.com/martijnversluis/ChordSheetJS/releases/latest): - -```html - - -``` - -### How to ...? - -#### Parse chord sheet - -##### Regular chord sheets - -```javascript -const chordSheet = ` - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.ChordsOverWordsParser(); -const song = parser.parse(chordSheet); -``` - -##### Ultimate Guitar chord sheets - -```javascript -const chordSheet = ` -[Chorus] - Am C/G F C -Let it be, let it be, let it be, let it be -C G F C/E Dm C -Whisper words of wisdom, let it be`.substring(1); - -const parser = new ChordSheetJS.UltimateGuitarParser(); -const song = parser.parse(chordSheet); -``` - -##### Chord pro format - -```javascript -const chordSheet = ` -{title: Let it be} -{subtitle: ChordSheetJS example version} - -{start_of_chorus: Chorus} -Let it [Am]be, let it [C/G]be, let it [F]be, let it [C]be -[C]Whisper words of [G]wisdom, let it [F]be [C/E] [Dm] [C] -{end_of_chorus}`.substring(1); - -const parser = new ChordSheetJS.ChordProParser(); -const song = parser.parse(chordSheet); -``` - -#### Display a parsed sheet - -##### Plain text format - -```javascript -const formatter = new ChordSheetJS.TextFormatter(); -const disp = formatter.format(song); -``` - -##### HTML format - -###### Table-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlTableFormatter(); -const disp = formatter.format(song); -``` - -###### Div-based layout - -```javascript -const formatter = new ChordSheetJS.HtmlDivFormatter(); -const disp = formatter.format(song); -``` - -##### Chord pro format - -```javascript -const formatter = new ChordSheetJS.ChordProFormatter(); -const disp = formatter.format(song); -``` - -#### Serialize/deserialize - -Chord sheets (`Song`s) can be serialized to plain JavaScript objects, which can be converted to JSON, XML etc by -third-party libraries. The serialized object can also be deserialized back into a `Song`. - -```javascript -const serializedSong = new ChordSheetSerializer().serialize(song); -const deserialized = new ChordSheetSerializer().deserialize(serializedSong); -``` - -#### Add styling - -The HTML formatters (HtmlTableFormatter and HtmlDivFormatter) can provide basic CSS to help with styling the output: - -```javascript -HtmlTableFormatter.cssString(); -// .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssString('.chordSheetViewer'); -// .chordSheetViewer .paragraph { -// margin-bottom: 1em; -// } - -HtmlTableFormatter.cssObject(); -// '.paragraph': { -// marginBottom: '1em' -// } -``` - -#### Parsing and modifying chords - -```javascript -import { Chord } from 'chordsheetjs'; -``` - -##### Parse - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -``` - -Parse numeric chords (Nashville system): - -```javascript -const chord = Chord.parse('b1sus4/#3'); -``` - -##### Display with #toString - -Use #toString() to convert the chord to a chord string (eg Dsus/F#) - -```javascript -const chord = Chord.parse('Ebsus4/Bb'); -chord.toString(); // --> "Ebsus4/Bb" -``` - -##### Clone - -```javascript -var chord2 = chord.clone(); -``` - -##### Normalize - -Normalizes keys B#, E#, Cb and Fb to C, F, B and E - -```javascript -const chord = Chord.parse('E#/B#'); -normalizedChord = chord.normalize(); -normalizedChord.toString(); // --> "F/C" -``` - -##### ~~Switch modifier~~ - -***Deprecated*** - -Convert # to b and vice versa - -```javascript -const chord = parseChord('Eb/Bb'); -const chord2 = chord.switchModifier(); -chord2.toString(); // --> "D#/A#" -``` - -##### Use specific modifier - -Set the chord to a specific modifier (# or b) - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('#'); -chord2.toString(); // --> "D#/A#" -``` - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.useModifier('b'); -chord2.toString(); // --> "Eb/Bb" -``` - -##### Transpose up - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeUp(); -chord2.toString(); // -> "E/B" -``` - -##### Transpose down - -```javascript -const chord = Chord.parse('Eb/Bb'); -const chord2 = chord.transposeDown(); -chord2.toString(); // -> "D/A" -``` - -##### Transpose - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(4); -chord2.toString(); // -> "E/G#" -``` - -```javascript -const chord = Chord.parse('C/E'); -const chord2 = chord.transpose(-4); -chord2.toString(); // -> "Ab/C" -``` - -##### Convert numeric chord to chord symbol - -```javascript -const numericChord = Chord.parse('2/4'); -const chordSymbol = numericChord.toChordSymbol('E'); -chordSymbol.toString(); // -> "F#/A" -``` - -### Supported ChordPro directives - -All directives are parsed and are added to `Song.metadata`. The list below indicates whether formatters actually -use those to change the generated output. - -:heavy_check_mark: = supported - -:clock2: = will be supported in a future version - -:heavy_multiplication_x: = currently no plans to support it in the near future - -#### Meta-data directives - -| Directive | Support | -|:---------------- |:------------------:| -| title (short: t) | :heavy_check_mark: | -| subtitle | :heavy_check_mark: | -| artist | :heavy_check_mark: | -| composer | :heavy_check_mark: | -| lyricist | :heavy_check_mark: | -| copyright | :heavy_check_mark: | -| album | :heavy_check_mark: | -| year | :heavy_check_mark: | -| key | :heavy_check_mark: | -| time | :heavy_check_mark: | -| tempo | :heavy_check_mark: | -| duration | :heavy_check_mark: | -| capo | :heavy_check_mark: | -| meta | :heavy_check_mark: | - -#### Formatting directives - -| Directive | Support | -|:-------------------------- |:------------------------:| -| comment (short: c) | :heavy_check_mark: | -| comment_italic (short: ci) | :heavy_multiplication_x: | -| comment_box (short: cb) | :heavy_multiplication_x: | -| chorus | :heavy_multiplication_x: | -| image | :heavy_multiplication_x: | - -#### Environment directives - -| Directive | Support | -|:---------------------------- |:------------------:| -| start_of_chorus (short: soc) | :heavy_check_mark: | -| end_of_chorus (short: eoc) | :heavy_check_mark: | -| start_of_verse | :heavy_check_mark: | -| end_of_verse | :heavy_check_mark: | -| start_of_tab (short: sot) | :heavy_check_mark: | -| end_of_tab (short: eot) | :heavy_check_mark: | -| start_of_grid | :heavy_check_mark: | -| end_of_grid | :heavy_check_mark: | - -#### Chord diagrams - -| Directive | Support | -|:--------- |:------------------:| -| define | :heavy_check_mark: | -| chord | :heavy_check_mark: | - -#### Fonts, sizes and colours - -| Directive | Support | -|:----------- |:------------------------:| -| textfont | :heavy_check_mark: | -| textsize | :heavy_check_mark: | -| textcolour | :heavy_check_mark: | -| chordfont | :heavy_check_mark: | -| chordsize | :heavy_check_mark: | -| chordcolour | :heavy_check_mark: | -| tabfont | :heavy_multiplication_x: | -| tabsize | :heavy_multiplication_x: | -| tabcolour | :heavy_multiplication_x: | - -#### Output related directives - -| Directive | Support | -|:------------------------------ |:------------------------:| -| new_page (short: np) | :heavy_multiplication_x: | -| new_physical_page (short: npp) | :heavy_multiplication_x: | -| column_break (short: cb) | :heavy_multiplication_x: | -| grid (short: g) | :heavy_multiplication_x: | -| no_grid (short: ng) | :heavy_multiplication_x: | -| titles | :heavy_multiplication_x: | -| columns (short: col) | :heavy_multiplication_x: | - -#### Custom extensions - -| Directive | Support | -|:--------- |:------------------:| -| x_ | :heavy_check_mark: | - -### API docs - -Note: all classes, methods and constants that are documented here can be considered public API and will only be -subject to breaking changes between major versions. - # Classes @@ -162881,7 +153066,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L344) +[chord.ts:344](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L344) ### Properties @@ -162895,7 +153080,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L24) +[chord.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L24) *** @@ -162909,7 +153094,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L26) +[chord.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L26) *** @@ -162923,7 +153108,7 @@ Represents a Chord, consisting of a root, suffix (quality) and bass ##### Defined in -[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L28) +[chord.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L28) ### Methods @@ -162939,7 +153124,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L60) +[chord.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L60) *** @@ -162957,7 +153142,7 @@ Returns a deep copy of the chord ##### Defined in -[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L374) +[chord.ts:374](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L374) *** @@ -162973,7 +153158,7 @@ Determines whether the chord is a chord solfege ##### Defined in -[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L160) +[chord.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L160) *** @@ -162989,7 +153174,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L110) +[chord.ts:110](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L110) *** @@ -163003,7 +153188,7 @@ Determines whether the chord is a chord symbol ##### Defined in -[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L432) +[chord.ts:432](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L432) *** @@ -163019,7 +153204,7 @@ Determines whether the chord is a numeral ##### Defined in -[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L246) +[chord.ts:246](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L246) *** @@ -163035,7 +153220,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L227) +[chord.ts:227](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L227) *** @@ -163049,7 +153234,7 @@ Determines whether the chord is numeric ##### Defined in -[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L436) +[chord.ts:436](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L436) *** @@ -163100,7 +153285,7 @@ the normalized chord ##### Defined in -[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L294) +[chord.ts:294](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L294) *** @@ -163118,7 +153303,7 @@ the normalized chord ##### Defined in -[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L442) +[chord.ts:442](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L442) *** @@ -163145,7 +153330,7 @@ the chord solfege ##### Defined in -[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L122) +[chord.ts:122](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L122) *** @@ -163174,7 +153359,7 @@ the chord solfege string ##### Defined in -[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L152) +[chord.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L152) *** @@ -163201,7 +153386,7 @@ the chord symbol ##### Defined in -[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L72) +[chord.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L72) *** @@ -163230,7 +153415,7 @@ the chord symbol string ##### Defined in -[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L102) +[chord.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L102) *** @@ -163255,7 +153440,7 @@ the numeral chord ##### Defined in -[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L194) +[chord.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L194) *** @@ -163282,7 +153467,7 @@ the numeral chord string ##### Defined in -[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L219) +[chord.ts:219](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L219) *** @@ -163307,7 +153492,7 @@ the numeric chord ##### Defined in -[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L170) +[chord.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L170) *** @@ -163334,7 +153519,7 @@ the numeric chord string ##### Defined in -[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L238) +[chord.ts:238](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L238) *** @@ -163363,7 +153548,7 @@ the chord string ##### Defined in -[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L257) +[chord.ts:257](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L257) *** @@ -163387,7 +153572,7 @@ the new, transposed chord ##### Defined in -[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L340) +[chord.ts:340](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L340) *** @@ -163405,7 +153590,7 @@ the new, transposed chord ##### Defined in -[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L331) +[chord.ts:331](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L331) *** @@ -163423,7 +153608,7 @@ the new, transposed chord ##### Defined in -[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L323) +[chord.ts:323](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L323) *** @@ -163447,7 +153632,7 @@ the new, changed chord ##### Defined in -[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L315) +[chord.ts:315](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L315) *** @@ -163473,7 +153658,7 @@ the new, changed chord ##### Defined in -[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L407) +[chord.ts:407](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L407) *** @@ -163501,7 +153686,7 @@ the new, changed chord ##### Defined in -[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L380) +[chord.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L380) *** @@ -163524,7 +153709,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L36) +[chord.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L36) *** @@ -163542,7 +153727,7 @@ the chord string, eg `Esus4/G#` or `1sus4/#3`. ##### Defined in -[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord.ts#L44) +[chord.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord.ts#L44) @@ -163587,7 +153772,7 @@ A chord definitions overrides a previous chord definition for the exact same cho ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/chord_definition.ts#L47) +[chord\_sheet/chord\_pro/chord\_definition.ts:47](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L47) ### Properties @@ -163600,7 +153785,7 @@ The offset must be 1 or higher. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/chord_definition.ts#L24) +[chord\_sheet/chord\_pro/chord\_definition.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L24) *** @@ -163617,7 +153802,7 @@ Note that the values -, x, X, and N are used to designate a string without finge ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/chord_definition.ts#L45) +[chord\_sheet/chord\_pro/chord\_definition.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L45) *** @@ -163633,7 +153818,7 @@ the topmost fret position is 1. With base-fret 3, fret position 1 indicates the ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/chord_definition.ts#L34) +[chord\_sheet/chord\_pro/chord\_definition.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L34) *** @@ -163645,7 +153830,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/chord_definition.ts#L17) +[chord\_sheet/chord\_pro/chord\_definition.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L17) ### Methods @@ -163659,7 +153844,7 @@ The chord name, e.g. `C`, `Dm`, `G7`. ##### Defined in -[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/chord_definition.ts#L54) +[chord\_sheet/chord\_pro/chord\_definition.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/chord_definition.ts#L54) @@ -163702,7 +153887,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L21) +[chord\_sheet/chord\_lyrics\_pair.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L21) ### Properties @@ -163712,7 +153897,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L13) +[chord\_sheet/chord\_lyrics\_pair.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L13) *** @@ -163722,7 +153907,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L9) +[chord\_sheet/chord\_lyrics\_pair.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L9) *** @@ -163732,7 +153917,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L11) +[chord\_sheet/chord\_lyrics\_pair.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L11) ### Methods @@ -163750,7 +153935,7 @@ The annotation ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L100) +[chord\_sheet/chord\_lyrics\_pair.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L100) *** @@ -163766,7 +153951,7 @@ Returns a deep copy of the ChordLyricsPair, useful when programmatically transfo ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L56) +[chord\_sheet/chord\_lyrics\_pair.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L56) *** @@ -163782,7 +153967,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L48) +[chord\_sheet/chord\_lyrics\_pair.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L48) *** @@ -163806,7 +153991,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L64) +[chord\_sheet/chord\_lyrics\_pair.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L64) *** @@ -163824,7 +154009,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L76) +[chord\_sheet/chord\_lyrics\_pair.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L76) *** @@ -163842,7 +154027,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L72) +[chord\_sheet/chord\_lyrics\_pair.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L72) *** @@ -163856,7 +154041,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L60) +[chord\_sheet/chord\_lyrics\_pair.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L60) *** @@ -163880,7 +154065,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L80) +[chord\_sheet/chord\_lyrics\_pair.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L80) *** @@ -163898,7 +154083,7 @@ Indicates whether a ChordLyricsPair should be visible in a formatted chord sheet ##### Defined in -[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_lyrics_pair.ts#L96) +[chord\_sheet/chord\_lyrics\_pair.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_lyrics_pair.ts#L96) @@ -163941,7 +154126,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) ### Properties @@ -163955,7 +154140,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) ### Methods @@ -163979,7 +154164,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L24) +[formatter/chord\_pro\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L24) *** @@ -163997,7 +154182,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L132) +[formatter/chord\_pro\_formatter.ts:132](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L132) *** @@ -164015,7 +154200,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L139) +[formatter/chord\_pro\_formatter.ts:139](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L139) *** @@ -164033,7 +154218,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L158) +[formatter/chord\_pro\_formatter.ts:158](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L158) *** @@ -164051,7 +154236,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L162) +[formatter/chord\_pro\_formatter.ts:162](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L162) *** @@ -164069,7 +154254,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L112) +[formatter/chord\_pro\_formatter.ts:112](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L112) *** @@ -164087,7 +154272,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L104) +[formatter/chord\_pro\_formatter.ts:104](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L104) *** @@ -164107,7 +154292,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L38) +[formatter/chord\_pro\_formatter.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L38) *** @@ -164127,7 +154312,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L32) +[formatter/chord\_pro\_formatter.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L32) *** @@ -164147,7 +154332,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L62) +[formatter/chord\_pro\_formatter.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L62) *** @@ -164165,7 +154350,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L124) +[formatter/chord\_pro\_formatter.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L124) *** @@ -164183,7 +154368,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L78) +[formatter/chord\_pro\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L78) *** @@ -164201,7 +154386,7 @@ The ChordPro string ##### Defined in -[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chord_pro_formatter.ts#L96) +[formatter/chord\_pro\_formatter.ts:96](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chord_pro_formatter.ts#L96) @@ -164234,7 +154419,7 @@ Parses a ChordPro chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_pro_parser.ts#L16) +[parser/chord\_pro\_parser.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_pro_parser.ts#L16) ### Accessors @@ -164254,7 +154439,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_pro_parser.ts#L23) +[parser/chord\_pro\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_pro_parser.ts#L23) ### Methods @@ -164286,7 +154471,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_pro_parser.ts#L36) +[parser/chord\_pro\_parser.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_pro_parser.ts#L36) @@ -164336,7 +154521,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L46) +[parser/chord\_sheet\_parser.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L46) ### Properties @@ -164346,7 +154531,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L31) *** @@ -164356,7 +154541,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L35) *** @@ -164366,7 +154551,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L37) *** @@ -164376,7 +154561,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L33) *** @@ -164386,7 +154571,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L23) *** @@ -164396,7 +154581,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L21) *** @@ -164406,7 +154591,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L25) *** @@ -164416,7 +154601,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L27) *** @@ -164426,7 +154611,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -164446,7 +154631,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L160) *** @@ -164460,7 +154645,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L82) +[parser/chord\_sheet\_parser.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L82) *** @@ -164474,7 +154659,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L177) *** @@ -164488,7 +154673,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L124) *** @@ -164508,7 +154693,7 @@ ChordSheetParser is deprecated, please use ChordsOverWordsParser. ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L107) *** @@ -164540,7 +154725,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L70) *** @@ -164558,7 +154743,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L84) +[parser/chord\_sheet\_parser.ts:84](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L84) *** @@ -164578,7 +154763,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L128) *** @@ -164596,7 +154781,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L94) *** @@ -164616,7 +154801,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L146) *** @@ -164630,7 +154815,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L118) *** @@ -164648,7 +154833,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L173) @@ -164681,7 +154866,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L40) +[chord\_sheet\_serializer.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L40) *** @@ -164691,7 +154876,7 @@ Serializes a song into een plain object, and deserializes the serialized object ##### Defined in -[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L42) +[chord\_sheet\_serializer.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L42) ### Methods @@ -164715,7 +154900,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L151) +[chord\_sheet\_serializer.ts:151](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L151) *** @@ -164733,7 +154918,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L156) +[chord\_sheet\_serializer.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L156) *** @@ -164751,7 +154936,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L201) +[chord\_sheet\_serializer.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L201) *** @@ -164769,7 +154954,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L184) +[chord\_sheet\_serializer.ts:184](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L184) *** @@ -164787,7 +154972,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L234) +[chord\_sheet\_serializer.ts:234](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L234) *** @@ -164805,7 +154990,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L259) +[chord\_sheet\_serializer.ts:259](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L259) *** @@ -164823,7 +155008,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L191) +[chord\_sheet\_serializer.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L191) *** @@ -164841,7 +155026,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L213) +[chord\_sheet\_serializer.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L213) *** @@ -164859,7 +155044,7 @@ The deserialized song ##### Defined in -[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L239) +[chord\_sheet\_serializer.ts:239](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L239) *** @@ -164882,7 +155067,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L49) +[chord\_sheet\_serializer.ts:49](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L49) *** @@ -164900,7 +155085,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L91) +[chord\_sheet\_serializer.ts:91](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L91) *** @@ -164938,7 +155123,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L114) +[chord\_sheet\_serializer.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L114) *** @@ -164956,7 +155141,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L142) +[chord\_sheet\_serializer.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L142) *** @@ -164974,7 +155159,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L138) +[chord\_sheet\_serializer.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L138) *** @@ -164992,7 +155177,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L63) +[chord\_sheet\_serializer.ts:63](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L63) *** @@ -165010,7 +155195,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L56) +[chord\_sheet\_serializer.ts:56](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L56) *** @@ -165028,7 +155213,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L134) +[chord\_sheet\_serializer.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L134) *** @@ -165046,7 +155231,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L100) +[chord\_sheet\_serializer.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L100) *** @@ -165064,7 +155249,7 @@ object A plain JS object containing all chord sheet data ##### Defined in -[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet_serializer.ts#L124) +[chord\_sheet\_serializer.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet_serializer.ts#L124) @@ -165107,7 +155292,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) ### Properties @@ -165121,7 +155306,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) *** @@ -165131,7 +155316,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L18) +[formatter/chords\_over\_words\_formatter.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L18) ### Methods @@ -165151,7 +155336,7 @@ options ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L88) +[formatter/chords\_over\_words\_formatter.ts:88](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L88) *** @@ -165175,7 +155360,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L25) +[formatter/chords\_over\_words\_formatter.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L25) *** @@ -165189,7 +155374,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L34) +[formatter/chords\_over\_words\_formatter.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L34) *** @@ -165211,7 +155396,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L145) +[formatter/chords\_over\_words\_formatter.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L145) *** @@ -165233,7 +155418,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L101) +[formatter/chords\_over\_words\_formatter.ts:101](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L101) *** @@ -165253,7 +155438,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L68) +[formatter/chords\_over\_words\_formatter.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L68) *** @@ -165273,7 +155458,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L126) +[formatter/chords\_over\_words\_formatter.ts:126](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L126) *** @@ -165293,7 +155478,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L80) +[formatter/chords\_over\_words\_formatter.ts:80](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L80) *** @@ -165315,7 +155500,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L134) +[formatter/chords\_over\_words\_formatter.ts:134](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L134) *** @@ -165335,7 +155520,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L55) +[formatter/chords\_over\_words\_formatter.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L55) *** @@ -165349,7 +155534,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L42) +[formatter/chords\_over\_words\_formatter.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L42) *** @@ -165369,7 +155554,7 @@ the chord sheet ##### Defined in -[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/chords_over_words_formatter.ts#L114) +[formatter/chords\_over\_words\_formatter.ts:114](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/chords_over_words_formatter.ts#L114) @@ -165437,7 +155622,7 @@ You can even use a markdown style frontmatter separator to separate the header f ##### Defined in -[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chords_over_words_parser.ts#L51) +[parser/chords\_over\_words\_parser.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chords_over_words_parser.ts#L51) ### Accessors @@ -165457,7 +155642,7 @@ All warnings raised during parsing the chord sheet ##### Defined in -[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chords_over_words_parser.ts#L58) +[parser/chords\_over\_words\_parser.ts:58](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chords_over_words_parser.ts#L58) ### Methods @@ -165489,7 +155674,7 @@ https://peggyjs.org/documentation.html#using-the-parser ##### Defined in -[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chords_over_words_parser.ts#L71) +[parser/chords\_over\_words\_parser.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chords_over_words_parser.ts#L71) @@ -165520,7 +155705,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/comment.ts#L7) +[chord\_sheet/comment.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L7) ### Properties @@ -165530,7 +155715,7 @@ Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format ##### Defined in -[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/comment.ts#L5) +[chord\_sheet/comment.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L5) ### Methods @@ -165546,7 +155731,7 @@ Returns a deep copy of the Comment, useful when programmatically transforming a ##### Defined in -[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/comment.ts#L23) +[chord\_sheet/comment.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L23) *** @@ -165562,7 +155747,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/comment.ts#L15) +[chord\_sheet/comment.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L15) *** @@ -165576,7 +155761,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/comment.ts#L27) +[chord\_sheet/comment.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/comment.ts#L27) @@ -165615,7 +155800,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/composite.ts#L9) +[chord\_sheet/chord\_pro/composite.ts:9](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L9) ### Properties @@ -165629,7 +155814,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L6) *** @@ -165639,7 +155824,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/composite.ts#L5) +[chord\_sheet/chord\_pro/composite.ts:5](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L5) *** @@ -165653,7 +155838,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L4) *** @@ -165667,7 +155852,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L8) *** @@ -165677,7 +155862,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/composite.ts#L7) +[chord\_sheet/chord\_pro/composite.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L7) ### Methods @@ -165695,7 +155880,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/composite.ts#L25) +[chord\_sheet/chord\_pro/composite.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L25) *** @@ -165719,7 +155904,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/composite.ts#L15) +[chord\_sheet/chord\_pro/composite.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L15) *** @@ -165733,7 +155918,7 @@ Indicates whether a Comment should be visible in a formatted chord sheet (except ##### Defined in -[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/composite.ts#L21) +[chord\_sheet/chord\_pro/composite.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/composite.ts#L21) @@ -165775,7 +155960,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) ### Properties @@ -165785,7 +155970,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) @@ -165828,7 +156013,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) ### Properties @@ -165842,7 +156027,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) ### Accessors @@ -165873,7 +156058,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L66) *** @@ -165893,7 +156078,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_div_formatter.ts#L44) +[formatter/html\_div\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_div_formatter.ts#L44) *** @@ -165913,7 +156098,7 @@ the CSS object ##### Defined in -[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_div_formatter.ts#L40) +[formatter/html\_div\_formatter.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_div_formatter.ts#L40) ### Methods @@ -165947,7 +156132,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L50) *** @@ -165975,7 +156160,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L26) @@ -166023,7 +156208,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) ### Properties @@ -166037,7 +156222,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) ### Accessors @@ -166064,7 +156249,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L66) *** @@ -166080,7 +156265,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L70) +[formatter/html\_formatter.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L70) *** @@ -166096,7 +156281,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L72) +[formatter/html\_formatter.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L72) ### Methods @@ -166126,7 +156311,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L50) *** @@ -166150,7 +156335,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L26) @@ -166194,7 +156379,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) ### Properties @@ -166208,7 +156393,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) ### Accessors @@ -166239,7 +156424,7 @@ the CSS object ##### Defined in -[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L66) +[formatter/html\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L66) *** @@ -166259,7 +156444,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_table_formatter.ts#L45) +[formatter/html\_table\_formatter.ts:45](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_table_formatter.ts#L45) *** @@ -166279,7 +156464,7 @@ the CSS object ##### Defined in -[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_table_formatter.ts#L41) +[formatter/html\_table\_formatter.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_table_formatter.ts#L41) ### Methods @@ -166313,7 +156498,7 @@ the CSS string ##### Defined in -[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L50) +[formatter/html\_formatter.ts:50](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L50) *** @@ -166341,7 +156526,7 @@ The HTML string ##### Defined in -[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/html_formatter.ts#L26) +[formatter/html\_formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/html_formatter.ts#L26) @@ -166394,7 +156579,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L249) +[key.ts:249](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L249) ### Properties @@ -166408,7 +156593,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L51) +[key.ts:51](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L51) *** @@ -166422,7 +156607,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L70) +[key.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L70) *** @@ -166436,7 +156621,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L55) +[key.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L55) *** @@ -166450,7 +156635,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L53) +[key.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L53) *** @@ -166460,7 +156645,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L74) +[key.ts:74](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L74) *** @@ -166474,7 +156659,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L76) +[key.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L76) *** @@ -166488,7 +156673,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L72) +[key.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L72) *** @@ -166502,7 +156687,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L57) +[key.ts:57](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L57) ### Accessors @@ -166518,7 +156703,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L285) +[key.ts:285](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L285) *** @@ -166534,7 +156719,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L519) +[key.ts:519](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L519) *** @@ -166550,7 +156735,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L490) +[key.ts:490](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L490) *** @@ -166566,7 +156751,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L301) +[key.ts:301](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L301) *** @@ -166582,7 +156767,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L305) +[key.ts:305](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L305) *** @@ -166598,7 +156783,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L59) +[key.ts:59](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L59) ### Methods @@ -166612,7 +156797,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L595) +[key.ts:595](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L595) *** @@ -166626,7 +156811,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L603) +[key.ts:603](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L603) *** @@ -166644,7 +156829,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L558) +[key.ts:558](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L558) *** @@ -166658,7 +156843,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L317) +[key.ts:317](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L317) *** @@ -166676,7 +156861,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L280) +[key.ts:280](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L280) *** @@ -166694,7 +156879,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L410) +[key.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L410) *** @@ -166712,7 +156897,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L390) +[key.ts:390](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L390) *** @@ -166726,7 +156911,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L402) +[key.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L402) *** @@ -166740,7 +156925,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L398) +[key.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L398) *** @@ -166754,7 +156939,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L293) +[key.ts:293](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L293) *** @@ -166768,7 +156953,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L406) +[key.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L406) *** @@ -166782,7 +156967,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L394) +[key.ts:394](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L394) *** @@ -166796,7 +156981,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L297) +[key.ts:297](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L297) *** @@ -166810,7 +156995,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L630) +[key.ts:630](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L630) *** @@ -166828,7 +157013,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L644) +[key.ts:644](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L644) *** @@ -166846,7 +157031,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L611) +[key.ts:611](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L611) *** @@ -166864,7 +157049,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L362) +[key.ts:362](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L362) *** @@ -166882,7 +157067,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L386) +[key.ts:386](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L386) *** @@ -166900,7 +157085,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L342) +[key.ts:342](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L342) *** @@ -166918,7 +157103,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L382) +[key.ts:382](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L382) *** @@ -166932,7 +157117,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L309) +[key.ts:309](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L309) *** @@ -166950,7 +157135,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L456) +[key.ts:456](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L456) *** @@ -166968,7 +157153,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L476) +[key.ts:476](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L476) *** @@ -166986,7 +157171,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L431) +[key.ts:431](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L431) *** @@ -167004,7 +157189,7 @@ The only function considered public API is `Key.distance` ##### Defined in -[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L452) +[key.ts:452](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L452) *** @@ -167028,7 +157213,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L480) +[key.ts:480](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L480) *** @@ -167046,7 +157231,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L544) +[key.ts:544](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L544) *** @@ -167060,7 +157245,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L582) +[key.ts:582](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L582) *** @@ -167074,7 +157259,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L568) +[key.ts:568](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L568) *** @@ -167092,7 +157277,7 @@ Returns a string representation of an object. ##### Defined in -[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L625) +[key.ts:625](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L625) *** @@ -167120,7 +157305,7 @@ the distance in semitones ##### Defined in -[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L245) +[key.ts:245](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L245) *** @@ -167140,7 +157325,7 @@ the distance in semitones ##### Defined in -[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L419) +[key.ts:419](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L419) *** @@ -167160,7 +157345,7 @@ the distance in semitones ##### Defined in -[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L152) +[key.ts:152](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L152) *** @@ -167182,7 +157367,7 @@ the distance in semitones ##### Defined in -[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L193) +[key.ts:193](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L193) *** @@ -167204,7 +157389,7 @@ the distance in semitones ##### Defined in -[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L161) +[key.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L161) *** @@ -167222,7 +157407,7 @@ the distance in semitones ##### Defined in -[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L78) +[key.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L78) *** @@ -167242,7 +157427,7 @@ the distance in semitones ##### Defined in -[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L93) +[key.ts:93](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L93) *** @@ -167260,7 +157445,7 @@ the distance in semitones ##### Defined in -[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L209) +[key.ts:209](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L209) *** @@ -167286,7 +157471,7 @@ the distance in semitones ##### Defined in -[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L108) +[key.ts:108](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L108) *** @@ -167304,7 +157489,7 @@ the distance in semitones ##### Defined in -[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L617) +[key.ts:617](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L617) *** @@ -167328,7 +157513,7 @@ the distance in semitones ##### Defined in -[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L176) +[key.ts:176](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L176) *** @@ -167346,7 +157531,7 @@ the distance in semitones ##### Defined in -[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L235) +[key.ts:235](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L235) *** @@ -167364,7 +157549,7 @@ the distance in semitones ##### Defined in -[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L217) +[key.ts:217](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L217) *** @@ -167382,7 +157567,7 @@ the distance in semitones ##### Defined in -[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/key.ts#L225) +[key.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/key.ts#L225) @@ -167417,7 +157602,7 @@ Represents a line in a chord sheet, consisting of items of type ChordLyricsPair ##### Defined in -[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L62) +[chord\_sheet/line.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L62) ### Properties @@ -167431,7 +157616,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L60) +[chord\_sheet/line.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L60) *** @@ -167441,7 +157626,7 @@ See: https://www.chordpro.org/chordpro/directives-props_chord_legacy/ ##### Defined in -[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L38) +[chord\_sheet/line.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L38) *** @@ -167453,7 +157638,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L29) +[chord\_sheet/line.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L29) *** @@ -167463,7 +157648,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L40) +[chord\_sheet/line.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L40) *** @@ -167473,7 +157658,7 @@ The items ([ChordLyricsPair](#classeschordlyricspairmd) or [Tag](#classestagmd) ##### Defined in -[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L44) +[chord\_sheet/line.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L44) *** @@ -167487,7 +157672,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L52) +[chord\_sheet/line.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L52) *** @@ -167497,7 +157682,7 @@ See: https://www.chordpro.org/chordpro/directives-props_text_legacy/ ##### Defined in -[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L42) +[chord\_sheet/line.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L42) *** @@ -167510,7 +157695,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L36) +[chord\_sheet/line.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L36) ### Accessors @@ -167526,7 +157711,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L223) +[chord\_sheet/line.ts:223](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L223) ### Methods @@ -167546,7 +157731,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L174) +[chord\_sheet/line.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L174) *** @@ -167564,7 +157749,7 @@ Values can be [VERSE](#variablesversemd), [CHORUS](#variableschorusmd) or [NONE] ##### Defined in -[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L207) +[chord\_sheet/line.ts:207](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L207) *** @@ -167586,7 +157771,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L83) +[chord\_sheet/line.ts:83](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L83) *** @@ -167606,7 +157791,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L201) +[chord\_sheet/line.ts:201](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L201) *** @@ -167624,7 +157809,7 @@ The item to be added ##### Defined in -[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L191) +[chord\_sheet/line.ts:191](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L191) *** @@ -167640,7 +157825,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L107) +[chord\_sheet/line.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L107) *** @@ -167654,7 +157839,7 @@ Returns a deep copy of the line and all of its items ##### Defined in -[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L185) +[chord\_sheet/line.ts:185](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L185) *** @@ -167672,7 +157857,7 @@ Indicates whether the line contains items that are renderable. Please use [hasRe ##### Defined in -[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L170) +[chord\_sheet/line.ts:170](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L170) *** @@ -167688,7 +157873,7 @@ Indicates whether the line contains items that are renderable ##### Defined in -[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L99) +[chord\_sheet/line.ts:99](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L99) *** @@ -167704,7 +157889,7 @@ Indicates whether the line type is BRIDGE ##### Defined in -[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L129) +[chord\_sheet/line.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L129) *** @@ -167720,7 +157905,7 @@ Indicates whether the line type is [CHORUS](#variableschorusmd) ##### Defined in -[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L137) +[chord\_sheet/line.ts:137](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L137) *** @@ -167736,7 +157921,7 @@ Indicates whether the line contains any items ##### Defined in -[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L71) +[chord\_sheet/line.ts:71](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L71) *** @@ -167752,7 +157937,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L145) +[chord\_sheet/line.ts:145](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L145) *** @@ -167766,7 +157951,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L75) +[chord\_sheet/line.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L75) *** @@ -167780,7 +157965,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L241) +[chord\_sheet/line.ts:241](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L241) *** @@ -167794,7 +157979,7 @@ Indicates whether the line type is GRID ##### Defined in -[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L237) +[chord\_sheet/line.ts:237](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L237) *** @@ -167810,7 +157995,7 @@ Indicates whether the line type is [TAB](#variablestabmd) ##### Defined in -[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L153) +[chord\_sheet/line.ts:153](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L153) *** @@ -167826,7 +158011,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L161) +[chord\_sheet/line.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L161) *** @@ -167844,7 +158029,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L196) +[chord\_sheet/line.ts:196](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L196) *** @@ -167862,7 +158047,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L111) +[chord\_sheet/line.ts:111](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L111) *** @@ -167884,7 +158069,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/line.ts#L213) +[chord\_sheet/line.ts:213](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/line.ts#L213) @@ -167921,7 +158106,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/literal.ts#L6) +[chord\_sheet/chord\_pro/literal.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L6) ### Properties @@ -167935,7 +158120,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L6) *** @@ -167949,7 +158134,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L4) *** @@ -167963,7 +158148,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L8) *** @@ -167973,7 +158158,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/literal.ts#L4) +[chord\_sheet/chord\_pro/literal.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L4) ### Methods @@ -167991,7 +158176,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/literal.ts#L19) +[chord\_sheet/chord\_pro/literal.ts:19](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L19) *** @@ -168009,7 +158194,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/literal.ts#L11) +[chord\_sheet/chord\_pro/literal.ts:11](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L11) *** @@ -168023,7 +158208,7 @@ Indicates whether the line type is [VERSE](#variablesversemd) ##### Defined in -[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/literal.ts#L15) +[chord\_sheet/chord\_pro/literal.ts:15](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/literal.ts#L15) @@ -168067,7 +158252,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L28) +[chord\_sheet/metadata.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L28) ### Properties @@ -168077,7 +158262,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L26) +[chord\_sheet/metadata.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L26) ### Accessors @@ -168097,7 +158282,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -168117,7 +158302,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -168137,7 +158322,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -168157,7 +158342,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -168177,7 +158362,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -168197,7 +158382,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -168217,7 +158402,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -168237,7 +158422,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -168257,7 +158442,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -168277,7 +158462,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -168297,7 +158482,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -168317,7 +158502,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -168337,7 +158522,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -168357,7 +158542,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L46) +[chord\_sheet/metadata.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L46) *** @@ -168371,7 +158556,7 @@ See [Metadata#get](#get) ##### Defined in -[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L178) +[chord\_sheet/metadata.ts:178](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L178) *** @@ -168389,7 +158574,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L174) +[chord\_sheet/metadata.ts:174](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L174) *** @@ -168407,7 +158592,7 @@ the cloned Metadata object ##### Defined in -[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L42) +[chord\_sheet/metadata.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L42) *** @@ -168448,7 +158633,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L109) +[chord\_sheet/metadata.ts:109](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L109) *** @@ -168466,7 +158651,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L150) +[chord\_sheet/metadata.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L150) *** @@ -168488,7 +158673,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L78) +[chord\_sheet/metadata.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L78) *** @@ -168510,7 +158695,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L82) +[chord\_sheet/metadata.ts:82](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L82) *** @@ -168528,7 +158713,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L36) +[chord\_sheet/metadata.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L36) *** @@ -168546,7 +158731,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L138) +[chord\_sheet/metadata.ts:138](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L138) *** @@ -168566,7 +158751,7 @@ else it returns an array of strings. ##### Defined in -[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata.ts#L70) +[chord\_sheet/metadata.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata.ts#L70) @@ -168603,7 +158788,7 @@ The [Line](#classeslinemd) items of which the paragraph consists ##### Defined in -[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/paragraph.ts#L16) +[chord\_sheet/paragraph.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L16) ### Accessors @@ -168621,7 +158806,7 @@ Returns the paragraph contents as one string where lines are separated by newlin ##### Defined in -[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/paragraph.ts#L52) +[chord\_sheet/paragraph.ts:52](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L52) *** @@ -168640,7 +158825,7 @@ in the first line. ##### Defined in -[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/paragraph.ts#L68) +[chord\_sheet/paragraph.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L68) *** @@ -168659,7 +158844,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/paragraph.ts#L87) +[chord\_sheet/paragraph.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L87) ### Methods @@ -168677,7 +158862,7 @@ If not, it returns [INDETERMINATE](#variablesindeterminatemd) ##### Defined in -[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/paragraph.ts#L18) +[chord\_sheet/paragraph.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L18) *** @@ -168697,7 +158882,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/paragraph.ts#L103) +[chord\_sheet/paragraph.ts:103](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L103) *** @@ -168711,7 +158896,7 @@ Indicates whether the paragraph contains lines with renderable items. ##### Defined in -[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/paragraph.ts#L107) +[chord\_sheet/paragraph.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L107) *** @@ -168732,7 +158917,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/paragraph.ts#L28) +[chord\_sheet/paragraph.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/paragraph.ts#L28) @@ -168767,7 +158952,7 @@ the paragraph contents as one string where lines are separated by newlines. ##### Defined in -[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/soft_line_break.ts#L2) +[chord\_sheet/soft\_line\_break.ts:2](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/soft_line_break.ts#L2) @@ -168810,7 +158995,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L54) +[chord\_sheet/song.ts:54](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L54) ### Properties @@ -168820,7 +159005,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L44) +[chord\_sheet/song.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L44) *** @@ -168830,7 +159015,7 @@ Creates a new {Song} instance ##### Defined in -[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L46) +[chord\_sheet/song.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L46) *** @@ -168844,7 +159029,7 @@ The [Line](#classeslinemd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L35) +[chord\_sheet/song.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L35) *** @@ -168857,7 +159042,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L42) +[chord\_sheet/song.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L42) *** @@ -168867,7 +159052,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L48) +[chord\_sheet/song.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L48) ### Accessors @@ -168887,7 +159072,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L38) +[chord\_sheet/metadata\_accessors.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L38) *** @@ -168907,7 +159092,7 @@ an array containing all unique values for the entry. ##### Defined in -[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L44) +[chord\_sheet/metadata\_accessors.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L44) *** @@ -168928,7 +159113,7 @@ The song body lines ##### Defined in -[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L64) +[chord\_sheet/song.ts:64](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L64) *** @@ -168951,7 +159136,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L78) +[chord\_sheet/song.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L78) *** @@ -168971,7 +159156,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L28) +[chord\_sheet/metadata\_accessors.ts:28](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L28) *** @@ -168991,7 +159176,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L46) +[chord\_sheet/metadata\_accessors.ts:46](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L46) *** @@ -169011,7 +159196,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L40) +[chord\_sheet/metadata\_accessors.ts:40](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L40) *** @@ -169031,7 +159216,7 @@ Returns the song paragraphs, skipping the paragraphs that only contain empty lin ##### Defined in -[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L30) +[chord\_sheet/metadata\_accessors.ts:30](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L30) *** @@ -169049,7 +159234,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L156) +[chord\_sheet/song.ts:156](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L156) *** @@ -169069,7 +159254,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L22) +[chord\_sheet/metadata\_accessors.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L22) *** @@ -169089,7 +159274,7 @@ The body paragraphs of the song, with any `{chorus}` tag expanded into the targe ##### Defined in -[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L42) +[chord\_sheet/metadata\_accessors.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L42) *** @@ -169109,7 +159294,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L148) +[chord\_sheet/song.ts:148](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L148) *** @@ -169129,7 +159314,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L26) +[chord\_sheet/metadata\_accessors.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L26) *** @@ -169149,7 +159334,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L32) +[chord\_sheet/metadata\_accessors.ts:32](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L32) *** @@ -169169,7 +159354,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L34) +[chord\_sheet/metadata\_accessors.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L34) *** @@ -169189,7 +159374,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L24) +[chord\_sheet/metadata\_accessors.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L24) *** @@ -169209,7 +159394,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/metadata_accessors.ts#L36) +[chord\_sheet/metadata\_accessors.ts:36](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/metadata_accessors.ts#L36) ### Methods @@ -169227,7 +159412,7 @@ The [Paragraph](#classesparagraphmd) items of which the song consists ##### Defined in -[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L380) +[chord\_sheet/song.ts:380](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L380) *** @@ -169254,7 +159439,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L304) +[chord\_sheet/song.ts:304](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L304) *** @@ -169283,7 +159468,7 @@ The value to set, or `null` to remove the directive ##### Defined in -[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L357) +[chord\_sheet/song.ts:357](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L357) *** @@ -169301,7 +159486,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L186) +[chord\_sheet/song.ts:186](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L186) *** @@ -169319,7 +159504,7 @@ The cloned song ##### Defined in -[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L417) +[chord\_sheet/song.ts:417](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L417) *** @@ -169344,7 +159529,7 @@ the chord definitions ##### Defined in -[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L453) +[chord\_sheet/song.ts:453](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L453) *** @@ -169362,7 +159547,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L427) +[chord\_sheet/song.ts:427](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L427) *** @@ -169384,7 +159569,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L194) +[chord\_sheet/song.ts:194](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L194) *** @@ -169406,7 +159591,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L198) +[chord\_sheet/song.ts:198](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L198) *** @@ -169424,7 +159609,7 @@ the chords ##### Defined in -[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L164) +[chord\_sheet/song.ts:164](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L164) *** @@ -169461,7 +159646,7 @@ song.mapItems((item) => { ##### Defined in -[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L398) +[chord\_sheet/song.ts:398](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L398) *** @@ -169498,7 +159683,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L485) +[chord\_sheet/song.ts:485](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L485) *** @@ -169512,7 +159697,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L332) +[chord\_sheet/song.ts:332](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L332) *** @@ -169530,7 +159715,7 @@ song.mapLines((line) => { ##### Defined in -[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L86) +[chord\_sheet/song.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L86) *** @@ -169558,7 +159743,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L225) +[chord\_sheet/song.ts:225](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L225) *** @@ -169586,7 +159771,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L211) +[chord\_sheet/song.ts:211](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L211) *** @@ -169606,7 +159791,7 @@ The changed song ##### Defined in -[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L190) +[chord\_sheet/song.ts:190](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L190) *** @@ -169641,7 +159826,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L252) +[chord\_sheet/song.ts:252](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L252) *** @@ -169672,7 +159857,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L292) +[chord\_sheet/song.ts:292](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L292) *** @@ -169703,7 +159888,7 @@ The transposed song ##### Defined in -[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L279) +[chord\_sheet/song.ts:279](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L279) *** @@ -169727,7 +159912,7 @@ the changed song ##### Defined in -[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/song.ts#L322) +[chord\_sheet/song.ts:322](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/song.ts#L322) @@ -169770,7 +159955,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L412) +[chord\_sheet/tag.ts:412](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L412) ### Properties @@ -169780,7 +159965,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L402) +[chord\_sheet/tag.ts:402](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L402) *** @@ -169790,7 +159975,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L406) +[chord\_sheet/tag.ts:406](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L406) *** @@ -169800,7 +159985,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L404) +[chord\_sheet/tag.ts:404](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L404) *** @@ -169810,7 +159995,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L408) +[chord\_sheet/tag.ts:408](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L408) *** @@ -169820,7 +160005,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L410) +[chord\_sheet/tag.ts:410](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L410) *** @@ -169834,7 +160019,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L6) *** @@ -169848,7 +160033,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L4) *** @@ -169862,7 +160047,7 @@ Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-direc ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L8) ### Accessors @@ -169894,7 +160079,7 @@ The tag full name. When the original tag used the short name, `name` will return ##### Defined in -[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L491) +[chord\_sheet/tag.ts:491](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L491) *** @@ -169914,7 +160099,7 @@ The original tag name that was used to construct the tag. ##### Defined in -[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L500) +[chord\_sheet/tag.ts:500](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L500) *** @@ -169946,7 +160131,7 @@ The tag value ##### Defined in -[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L513) +[chord\_sheet/tag.ts:513](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L513) ### Methods @@ -169968,7 +160153,7 @@ The cloned tag ##### Defined in -[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L555) +[chord\_sheet/tag.ts:555](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L555) *** @@ -169987,7 +160172,7 @@ https://chordpro.org/chordpro/directives-env_bridge/, https://chordpro.org/chord ##### Defined in -[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L539) +[chord\_sheet/tag.ts:539](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L539) *** @@ -170003,7 +160188,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L521) +[chord\_sheet/tag.ts:521](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L521) *** @@ -170017,7 +160202,7 @@ Checks whether the tag value is a non-empty string. ##### Defined in -[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L477) +[chord\_sheet/tag.ts:477](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L477) *** @@ -170033,7 +160218,7 @@ Checks whether the tag is either a standard meta tag or a custom meta directive ##### Defined in -[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L547) +[chord\_sheet/tag.ts:547](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L547) *** @@ -170049,7 +160234,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L529) +[chord\_sheet/tag.ts:529](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L529) *** @@ -170063,7 +160248,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L465) +[chord\_sheet/tag.ts:465](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L465) *** @@ -170077,7 +160262,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L473) +[chord\_sheet/tag.ts:473](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L473) *** @@ -170091,7 +160276,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L469) +[chord\_sheet/tag.ts:469](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L469) *** @@ -170111,7 +160296,7 @@ Checks whether the tag is usually rendered inline. It currently only applies to ##### Defined in -[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L563) +[chord\_sheet/tag.ts:563](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L563) *** @@ -170127,7 +160312,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L559) +[chord\_sheet/tag.ts:559](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L559) *** @@ -170145,7 +160330,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L437) +[chord\_sheet/tag.ts:437](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L437) *** @@ -170163,7 +160348,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L455) +[chord\_sheet/tag.ts:455](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L455) *** @@ -170183,7 +160368,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/tag.ts#L445) +[chord\_sheet/tag.ts:445](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/tag.ts#L445) @@ -170220,7 +160405,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L24) +[chord\_sheet/chord\_pro/ternary.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L24) ### Properties @@ -170234,7 +160419,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L6) +[chord\_sheet/ast\_component.ts:6](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L6) *** @@ -170244,7 +160429,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L22) +[chord\_sheet/chord\_pro/ternary.ts:22](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L22) *** @@ -170258,7 +160443,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L4) +[chord\_sheet/ast\_component.ts:4](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L4) *** @@ -170272,7 +160457,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/ast_component.ts#L8) +[chord\_sheet/ast\_component.ts:8](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/ast_component.ts#L8) *** @@ -170282,7 +160467,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L20) +[chord\_sheet/chord\_pro/ternary.ts:20](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L20) *** @@ -170292,7 +160477,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L18) +[chord\_sheet/chord\_pro/ternary.ts:18](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L18) *** @@ -170302,7 +160487,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L16) +[chord\_sheet/chord\_pro/ternary.ts:16](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L16) ### Methods @@ -170320,7 +160505,7 @@ Returns a string representation of an object. ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L98) +[chord\_sheet/chord\_pro/ternary.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L98) *** @@ -170354,7 +160539,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L48) +[chord\_sheet/chord\_pro/ternary.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L48) *** @@ -170376,7 +160561,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L86) +[chord\_sheet/chord\_pro/ternary.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L86) *** @@ -170396,7 +160581,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L60) +[chord\_sheet/chord\_pro/ternary.ts:60](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L60) *** @@ -170416,7 +160601,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L68) +[chord\_sheet/chord\_pro/ternary.ts:68](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L68) *** @@ -170430,7 +160615,7 @@ The evaluated expression ##### Defined in -[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/chord_sheet/chord_pro/ternary.ts#L94) +[chord\_sheet/chord\_pro/ternary.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/chord_sheet/chord_pro/ternary.ts#L94) @@ -170473,7 +160658,7 @@ options ##### Defined in -[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L26) +[formatter/formatter.ts:26](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L26) ### Properties @@ -170487,7 +160672,7 @@ options ##### Defined in -[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/formatter.ts#L7) +[formatter/formatter.ts:7](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/formatter.ts#L7) *** @@ -170497,7 +160682,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L17) +[formatter/text\_formatter.ts:17](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L17) ### Methods @@ -170517,7 +160702,7 @@ options ##### Defined in -[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L102) +[formatter/text\_formatter.ts:102](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L102) *** @@ -170541,7 +160726,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L24) +[formatter/text\_formatter.ts:24](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L24) *** @@ -170555,7 +160740,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L33) +[formatter/text\_formatter.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L33) *** @@ -170577,7 +160762,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L161) +[formatter/text\_formatter.ts:161](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L161) *** @@ -170599,7 +160784,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L129) +[formatter/text\_formatter.ts:129](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L129) *** @@ -170619,7 +160804,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L66) +[formatter/text\_formatter.ts:66](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L66) *** @@ -170639,7 +160824,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L142) +[formatter/text\_formatter.ts:142](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L142) *** @@ -170659,7 +160844,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L94) +[formatter/text\_formatter.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L94) *** @@ -170681,7 +160866,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L150) +[formatter/text\_formatter.ts:150](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L150) *** @@ -170701,7 +160886,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L53) +[formatter/text\_formatter.ts:53](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L53) *** @@ -170715,7 +160900,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L44) +[formatter/text\_formatter.ts:44](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L44) *** @@ -170733,7 +160918,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L86) +[formatter/text\_formatter.ts:86](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L86) *** @@ -170751,7 +160936,7 @@ the chord sheet ##### Defined in -[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/formatter/text_formatter.ts#L78) +[formatter/text\_formatter.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/formatter/text_formatter.ts#L78) @@ -170799,7 +160984,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/ultimate_guitar_parser.ts#L38) +[parser/ultimate\_guitar\_parser.ts:38](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L38) ### Properties @@ -170813,7 +160998,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L31) +[parser/chord\_sheet\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L31) *** @@ -170827,7 +161012,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L35) +[parser/chord\_sheet\_parser.ts:35](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L35) *** @@ -170837,7 +161022,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/ultimate_guitar_parser.ts#L31) +[parser/ultimate\_guitar\_parser.ts:31](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L31) *** @@ -170851,7 +161036,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L37) +[parser/chord\_sheet\_parser.ts:37](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L37) *** @@ -170865,7 +161050,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L33) +[parser/chord\_sheet\_parser.ts:33](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L33) *** @@ -170879,7 +161064,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L23) +[parser/chord\_sheet\_parser.ts:23](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L23) *** @@ -170893,7 +161078,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L21) +[parser/chord\_sheet\_parser.ts:21](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L21) *** @@ -170907,7 +161092,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L25) +[parser/chord\_sheet\_parser.ts:25](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L25) *** @@ -170921,7 +161106,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L27) +[parser/chord\_sheet\_parser.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L27) *** @@ -170935,7 +161120,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L29) +[parser/chord\_sheet\_parser.ts:29](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L29) ### Methods @@ -170959,7 +161144,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L160) +[parser/chord\_sheet\_parser.ts:160](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L160) *** @@ -170977,7 +161162,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/ultimate_guitar_parser.ts#L79) +[parser/ultimate\_guitar\_parser.ts:79](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L79) *** @@ -170997,7 +161182,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/ultimate_guitar_parser.ts#L100) +[parser/ultimate\_guitar\_parser.ts:100](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L100) *** @@ -171015,7 +161200,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L177) +[parser/chord\_sheet\_parser.ts:177](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L177) *** @@ -171033,7 +161218,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L124) +[parser/chord\_sheet\_parser.ts:124](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L124) *** @@ -171057,7 +161242,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L107) +[parser/chord\_sheet\_parser.ts:107](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L107) *** @@ -171071,7 +161256,7 @@ whether to preserve trailing whitespace for chords ##### Defined in -[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/ultimate_guitar_parser.ts#L72) +[parser/ultimate\_guitar\_parser.ts:72](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L72) *** @@ -171107,7 +161292,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L70) +[parser/chord\_sheet\_parser.ts:70](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L70) *** @@ -171129,7 +161314,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/ultimate_guitar_parser.ts#L42) +[parser/ultimate\_guitar\_parser.ts:42](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L42) *** @@ -171153,7 +161338,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L128) +[parser/chord\_sheet\_parser.ts:128](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L128) *** @@ -171175,7 +161360,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L94) +[parser/chord\_sheet\_parser.ts:94](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L94) *** @@ -171199,7 +161384,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L146) +[parser/chord\_sheet\_parser.ts:146](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L146) *** @@ -171217,7 +161402,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L118) +[parser/chord\_sheet\_parser.ts:118](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L118) *** @@ -171239,7 +161424,7 @@ The parsed song ##### Defined in -[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/chord_sheet_parser.ts#L173) +[parser/chord\_sheet\_parser.ts:173](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/chord_sheet_parser.ts#L173) *** @@ -171253,7 +161438,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/ultimate_guitar_parser.ts#L113) +[parser/ultimate\_guitar\_parser.ts:113](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L113) *** @@ -171273,7 +161458,7 @@ The parsed song ##### Defined in -[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/parser/ultimate_guitar_parser.ts#L87) +[parser/ultimate\_guitar\_parser.ts:87](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/parser/ultimate_guitar_parser.ts#L87) @@ -171350,7 +161535,7 @@ Used to mark a section as ABC music notation ### Defined in -[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L62) +[constants.ts:62](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L62) @@ -171371,7 +161556,7 @@ Used to mark a paragraph as chorus ### Defined in -[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L13) +[constants.ts:13](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L13) @@ -171392,7 +161577,7 @@ Used to mark a paragraph as containing lines with both verse and chorus type ### Defined in -[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L27) +[constants.ts:27](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L27) @@ -171413,7 +161598,7 @@ Used to mark a section as Lilypond notation ### Defined in -[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L55) +[constants.ts:55](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L55) @@ -171434,7 +161619,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L34) +[constants.ts:34](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L34) @@ -171451,7 +161636,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L77) +[constants.ts:77](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L77) @@ -171468,7 +161653,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L76) +[constants.ts:76](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L76) @@ -171485,7 +161670,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L78) +[constants.ts:78](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L78) @@ -171502,7 +161687,7 @@ Used to mark a paragraph as not containing a line marked with a type ### Defined in -[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L75) +[constants.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L75) @@ -171523,7 +161708,7 @@ Used to mark a paragraph as tab ### Defined in -[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L41) +[constants.ts:41](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L41) @@ -171544,7 +161729,7 @@ Used to mark a paragraph as verse ### Defined in -[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/constants.ts#L48) +[constants.ts:48](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/constants.ts#L48) @@ -171675,7 +161860,7 @@ Used to mark a paragraph as verse ### Defined in -[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/index.ts#L75) +[index.ts:75](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/index.ts#L75) @@ -171888,4 +162073,4 @@ Used to mark a paragraph as verse ### Defined in -[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/511643ddf53454249f8f80cd4514ff9a9639e0d4/src/template_helpers.ts#L98) +[template\_helpers.ts:98](https://github.com/martijnversluis/ChordSheetJS/blob/72d2652c124ffd35b317b03359949c78f5832c8b/src/template_helpers.ts#L98) diff --git a/package.json b/package.json index 4c64e27bd..182f1a200 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,6 @@ "eslint-config-airbnb": "^19.0.4", "eslint-plugin-jest": "^28.8.3", "globals": "^15.9.0", - "husky": "^9.0.11", "jest": "^27.0.1", "parcel": "2.13.0", "peggy": "^4.0.2", @@ -70,7 +69,7 @@ "ci": "yarn install && yarn unibuild lint && yarn unibuild test && yarn build:release", "debug:chordpro": "tsx script/debug_parser.ts chord_pro --skip-chord-grammar", "postpublish": "pinst --enable", - "prepare": "husky install && yarn build", + "prepare": "yarn build", "prepublishOnly": "pinst --disable && yarn install && yarn test && yarn build:release", "readme": "yarn unibuild build readme -f", "test": "yarn unibuild lint && yarn unibuild test", diff --git a/yarn.lock b/yarn.lock index e4dbe8212..dd77ace0a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3790,7 +3790,6 @@ __metadata: eslint-config-airbnb: "npm:^19.0.4" eslint-plugin-jest: "npm:^28.8.3" globals: "npm:^15.9.0" - husky: "npm:^9.0.11" jest: "npm:^27.0.1" lodash.get: "npm:^4.4.2" parcel: "npm:2.13.0" @@ -5930,15 +5929,6 @@ __metadata: languageName: node linkType: hard -"husky@npm:^9.0.11": - version: 9.1.6 - resolution: "husky@npm:9.1.6" - bin: - husky: bin.js - checksum: 10c0/705673db4a247c1febd9c5df5f6a3519106cf0335845027bb50a15fba9b1f542cb2610932ede96fd08008f6d9f49db0f15560509861808b0031cdc0e7c798bac - languageName: node - linkType: hard - "iconv-lite@npm:0.4.24": version: 0.4.24 resolution: "iconv-lite@npm:0.4.24"