diff --git a/src/pco_chordspkg/ast.nim b/src/pco_chordspkg/ast.nim index 880d63e..149ceb2 100644 --- a/src/pco_chordspkg/ast.nim +++ b/src/pco_chordspkg/ast.nim @@ -35,6 +35,7 @@ type case kind: ChordChartNodeKind of ccnkSection: sectionName*: string + remainingSectionLine*: Option[string] sectionContents*: seq[ChordChartNode] of ccnkLine: line*: seq[ChordChartNode] @@ -267,12 +268,13 @@ proc parseMetadata(ctx: var ParserContext): ChordChartMetadata = const KNOWN_SECTION_NAMES = [ "chorus", "verse", "bridge", "breakdown", "vamp", "intstrumental", - "interlude", "intro", "outtro", "ending", "end", "tag" + "interlude", "intro", "outtro", "ending", "end", "tag", "prechorus", + "pre-chorus", "pre chorus" ] let SECTION_LINE_PAT = re( - "^((" & # case insensitive - "((?i)" & KNOWN_SECTION_NAMES.join("|") & ")" & # known names + "^((" & "((?i)" & # case insensitive + KNOWN_SECTION_NAMES.join("|") & ")" & # known names "|[[:upper:]]{3,}" & # all upper-case words ") ?\\d*)" & # numeric suffix (Verse 2) @@ -422,12 +424,14 @@ proc parseBody(ctx: var ParserContext): seq[ChordChartNode] = let captures = m.get.captures.toSeq ctx.curSection = ChordChartNode( kind: ccnkSection, - sectionName: if captures[0].isSome: captures[0].get.strip - else: raise ctx.makeError("unknown error parsing section header: " & line), + sectionName: + if captures[0].isSome: captures[0].get.strip + else: raise ctx.makeError("unknown error parsing section header: " & line), + remainingSectionLine: + if captures[3].isSome: some(captures[3].get.strip) + else: none[string](), sectionContents: @[]) result.add(ctx.curSection) - if captures[3].isSome: - ctx.curSection.sectionContents &= ctx.parseLineParts(captures[3].get) continue else: diff --git a/src/pco_chordspkg/html.nim b/src/pco_chordspkg/html.nim index b4aee10..6f0af24 100644 --- a/src/pco_chordspkg/html.nim +++ b/src/pco_chordspkg/html.nim @@ -40,6 +40,13 @@ h3 { text-decoration: underline; } +h3 .section-text { + font-style: italic; + font-size: 1em; + font-weight: normal; + margin: 0 0.5em; +} + .line { display: flex; flex-direction: row; @@ -108,7 +115,13 @@ proc toHtml(ctx: var FormatContext, node: ChordChartNode, indent: string): strin of ccnkSection: ctx.currentSection = node result &= indent & "
\p" & - indent & " " & "

" & node.sectionName & "

\p" + indent & " " & "

" & node.sectionName + + if ctx.currentSection.remainingSectionLine.isSome: + result &= "" & + ctx.currentSection.remainingSectionLine.get & "" + + result &= "

\p" var contents = newSeq[string]() for contentNode in node.sectionContents: