Code/util.vbs Line 1135/1146 change , to <br> to get the list of Source/Citations to display with one line per Source/Citation
IfcollSources.Count > 0 Then ' write details of remaining source/citations
If NotSession("NestSourceRefs") Then Report.WriteBrDic.Plurial("SourceCitation" & Util.IfElse(g_collFootnotes.Count> 0, "_Other",""), collSources.Count)
strSep =""
For EachoFootnote in collSources
strTitle = StrPlainText(oFootnote,Util.FirstNonEmpty(oFootnote.Subtitle, oFootnote.Description,oFootnote.QuotedText, Dic("SourceInformation")))
If (strTitle <> "") Then
strTitle = Util.FormatString(" title='{}'", strTitle)
EndIf
Report.WriteFormatted strSep & " <ahref='source-{&t}.htm'onclick='showPopUpFrame("""");' target='popup'{}><i>{}</i></a>", oFootnote.ID, strTitle,JoinSourceCitationNames(oFootnote, StrFormatText(oFootnote,StrParseText(oFootnote.title, True)), true)
strSep = Util.IfElse(Session("NestSourceRefs"), "<br/>", "<br >")
Next
End If