diff --git a/linkdata/linksfunctions.js b/linkdata/linksfunctions.js index ccc78c4e..a669119c 100755 --- a/linkdata/linksfunctions.js +++ b/linkdata/linksfunctions.js @@ -270,12 +270,25 @@ usedfor: "${record.usedfor}", + + // character detail if (record.charNotesList && record.charNotesList.length > 0 || record.ssHistory) { out += 'Character detail:' - if (record.charNotesList && record.charNotesList.length > 0) out += '

Character notes

' out += '

Unicode historical documents

' - out += '' + + if (record.scriptNotes && record.scriptNotes.length > 0) { + out += '

' + for (let n=0;n0) out += ' • ' + out += ''+record.scriptNotes[n][0]+'' + } + out += '

' + } + + if (record.charNotesList && record.charNotesList.length > 0) out += '

Unicode block notes

' + + out += '' }