From 2acfb42a380ddfa5926d4068aec0af86bf6d74ac Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Mon, 6 Feb 2023 21:44:47 -0600 Subject: [PATCH] Add support for specifying the song order in the metadata section. --- pco_chords.nimble | 2 +- src/pco_chordspkg/ast.nim | 2 +- src/pco_chordspkg/cliconstants.nim | 2 +- src/pco_chordspkg/html.nim | 22 ++++++++++++++++++++++ 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/pco_chords.nimble b/pco_chords.nimble index bcff610..fedcadb 100644 --- a/pco_chords.nimble +++ b/pco_chords.nimble @@ -1,6 +1,6 @@ # Package -version = "0.3.1" +version = "0.4.0" author = "Jonathan Bernard" description = "Chord chart formatter compatible with Planning Center Online" license = "MIT" diff --git a/src/pco_chordspkg/ast.nim b/src/pco_chordspkg/ast.nim index d791c2e..ed68faf 100644 --- a/src/pco_chordspkg/ast.nim +++ b/src/pco_chordspkg/ast.nim @@ -1,4 +1,4 @@ -import std/logging, std/nre, std/strtabs, std/strutils +import std/[nre, strtabs, strutils] import zero_functional type diff --git a/src/pco_chordspkg/cliconstants.nim b/src/pco_chordspkg/cliconstants.nim index 6259a29..c162844 100644 --- a/src/pco_chordspkg/cliconstants.nim +++ b/src/pco_chordspkg/cliconstants.nim @@ -1,4 +1,4 @@ -const PCO_CHORDS_VERSION* = "0.3.1" +const PCO_CHORDS_VERSION* = "0.4.0" const USAGE* = """Usage: pco_chords [options] diff --git a/src/pco_chordspkg/html.nim b/src/pco_chordspkg/html.nim index 66ae9b7..b4aee10 100644 --- a/src/pco_chordspkg/html.nim +++ b/src/pco_chordspkg/html.nim @@ -62,6 +62,16 @@ h3 { margin-right: 0.5em; } +.song-order h3 { + font-style: italic; + font-weight: normal; +} + +.song-order li { + list-style: none; + margin-left: 1em; +} + @media screen { body { margin: 1em; } } @@ -84,6 +94,14 @@ proc transpose(ctx: FormatContext, chord: ChordChartChord): string = else: result = chord.original +func makeSongOrder(songOrder, indent: string): string = + result = indent & "
\p" & + indent & "

Song Order

\p" & + indent & " \p" & indent & "
\p" + proc toHtml(ctx: var FormatContext, node: ChordChartNode, indent: string): string = result = "" case node.kind @@ -195,6 +213,10 @@ proc toHtml*( result &= "
" result &= join(cc.nodes --> map(ctx.toHtml(it, indent & " ")), "\p") + + if cc.metadata.contains("song order"): + result &= makeSongOrder(cc.metadata["song order"], indent) + result &= "
" result &= " \p"