Both of these take the whole contents of the draft and append it to a new/existing user selectable list. The whole contents. I don’t want to do that. I just want a selection from the document appended/prepended to a new/existing list with the Markdown task markup.
/*
Ask for a category, and append to a tagged list for that category
*/
// EDIT THIS
// setup categories available
const categories = ["Blog Ideas", "Books", "Computer", "Movies", "Shop"];
// EDIT TAG
// tag to assign to list drafts
const listTag = "listitems";
// grab text
const currentContent = editor.getSelectedText();
// prompt to select a category
var p = Prompt.create();
p.title = "Select list";
for (var cat of categories) {
p.addButton(cat);
}
if (p.show()) { // user made a selection
var category = p.buttonPressed;
// query for list drafts...
var drafts = Draft.query(category, "inbox", [listTag]);
// loop over found drafts looking for a matching list
var d;
for (var draft of drafts) {
if (draft.content.startsWith("## " + category)) {
d = draft;
}
}
// if we didn't find the list, create it...
if (!d) {
d = Draft.create();
d.content = "## " + category + "\n\n";
}
// tag and update content
d.addTag(listTag);
d.content = d.content + "- [ ] " + currentContent + "\n"
d.update();
}
else { // user cancelled prompt
context.cancel();
}
This considers only one line. If you have multiple lines, it treats it as one line with \n in between. Doesn’t add the checkbox to multiple lines, only the first line. How does one make it aware of a series of items to add to a list?
Look up “arrays in JavaScript”. Arrays are ways of breaking something up into multiple elements and being able to reference and process them individually. If you can split your text into an array of elements with each element being a line, then you simply work through (iterate over) all of the elements in the array and process them one at a time.
How do you split a string of text? Look up “JavaScript split method”. Use the newline character as your split character and you’ll have your array.
Hello, macosxguru,
I would like to make the same as you, ie only adding a single line to a list, but in the “add to list” action script I don’t find what sylumer indicates : draft.content
Can you please help?