mirror of
https://github.com/pbek/QOwnNotes.git
synced 2025-06-28 21:09:52 +00:00
31 lines
951 B
QML
31 lines
951 B
QML
import QtQml 2.0
|
|
import QOwnNotesTypes 1.0
|
|
|
|
/**
|
|
* This script is an example how to modify the headline of new notes
|
|
*/
|
|
QtObject {
|
|
/**
|
|
* This function is called before a note note is created
|
|
*
|
|
* It allows you to modify the headline of the note before it is created
|
|
* Note that you have to take care about a unique note name, otherwise
|
|
* the new note will not be created, it will just be found in the note list
|
|
*
|
|
* You can use this method for creating note templates
|
|
*
|
|
* @param headline text that would be used to create the headline
|
|
* @return {string} the headline of the note
|
|
*/
|
|
function handleNewNoteHeadlineHook(headline) {
|
|
var text = headline + " - my custom note name " + "\n";
|
|
var underline = "";
|
|
|
|
// add the underline
|
|
for (var i = 0; i < (text.length - 1); i++) {
|
|
underline += "=";
|
|
}
|
|
|
|
return text + underline;
|
|
}
|
|
}
|