UNPKG

chordsong

Version:

ChordSong is a simple text format for the notation of lyrics with guitar chords, and an application that renders them to portable HTML pages.

8 lines (7 loc) 255 B
import { RenderMode } from './Renderer'; export interface SongParts { title: string; content: string; css: string; } export default function chordsong(text: string, renderMode?: RenderMode, theme?: string, html?: boolean): string | SongParts;