pretty print JSON into note content

This commit is contained in:
zadam 2019-03-05 20:44:50 +01:00
parent 7c404f03db
commit c8e01d6cce

View File

@ -106,7 +106,7 @@ class Note extends Entity {
/** @returns {Promise} */
async setJsonContent(content) {
await this.setContent(JSON.stringify(content));
await this.setContent(JSON.stringify(content, null, '\t'));
}
/** @returns {boolean} true if this note is the root of the note tree. Root note has "root" noteId */