Alternative view of completed task

Maybe visually it will be more clear to cross out completed tasks?

inkdrop-tasklist

Hi Dmitry,

Thanks for the suggestion.
Since it’s Markdown, you can have various styles in the task list items.
I often add links to the task list like so:

The strikethroughs would make it hard to read.

Agree. But if it will be useful to someone, then here is the snippet for styles.less:

.list-line {
    .cm-formatting-task.cm-property {
        color: #7f868b;
        & + .cm-variable-2 {
            color: #7f868b;
            text-decoration: line-through;
        }
    }
}

Due to the layout, the line is slightly overlapping the space before the text.

1 Like

Cool! Thanks for sharing.