import QtQml 2.0 import com.qownnotes.noteapi 1.0 /* This script shows current note statistics in a "label": Char(+s) = characters including spaces Char(−s) = characters excluding spaces Words = character groups divided by spaces Paras = paragraphs - character groups divided by line breaks */ QtObject { function init() {script.registerLabel("note stats")} function noteStats(note) { script.setLabelText("note stats", "
Char(+s) " + note.noteText.length + " Char(−s) " + note.noteText.match(/[^ ]/gi).length + " Words " + note.noteText.split(/\s+/).length + " Paras " + (note.noteText.match(/^.*?\S/gm) || "").length + "
") } function noteOpenedHook(note) {noteStats(note)} function onNoteStored(note) {noteStats(note)} }