Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
chord-md-parser
Advanced tools
Extracts chords
and lirics
from markdown python code
import { Extractor } from 'chord-md-parser';
let extractor = new Extractor({
md: {
filepath: null,
content: 'CONTENT'
}
})
let song = extractor.getSong()
song // -> array with only song lirics and tablatures/chords
Split roots and override roots from a chord string
.
import { ChordParser } from 'chord-md-parser';
let parser = new ChordParser()
let chord = parser.parse('Bb7(9)/Cb');
// -----------------------
chord === { root: 'Bb',
flavors: '7(9)',
rootOverride: 'Cb' }
Print chord string
from chord object
.
import { ChordPrint } from 'chord-md-parser';
let printed = ChordPrint.print({
root: 'C',
flavors: 'M7',
rootOverride: 'G'
})
// -----------------------
printed === 'CM7/G'
Change root and
import { ChordTransposer } from 'chord-md-parser';
let transposer = new ChordTransposer()
let new_chord = transposer.transpose({
root: 'C',
flavors: 'M7',
rootOverride: 'G'
}, 1)
// -----------------------
new_chord === { root: 'C#', flavors: 'M7', rootOverride: 'G#', index: 3 }
Gets all chords from a string and convert to an array of chord objects
.
import { ChordsConverter } from 'chord-md-parser';
let converter = new ChordsConverter()
let all_chords = converter.getChordsList(' A7+ E7/4 B7/9 Dm(7+)');
// -----------------------
all_chords:
[
{
chord:{
root: 'A',
flavors: '7+',
rootOverride: null
},
loc: { start: 5, size: 3 }
},
{
chord:{
root: 'E',
flavors: '7/4',
rootOverride: null
},
loc: { start: 12, size: 4 }
},
{
chord:{
root: 'B',
flavors: '7/9',
rootOverride: null
},
loc: { start: 22, size: 4 }
},
{
chord:{
root: 'D',
flavors: 'm(7+)',
rootOverride: null
},
loc: { start: 30, size: 6 }
}
]
# start azk [optional]
$ azk shell
# run all tests
$ npm test
# run all tests and watch
$ npm run watch
using:
FAQs
guitar chords parser from markdown files
We found that chord-md-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.