One of the features Iâve been wanting (a pullover from my Evernote days) is the ability to highlight text in Dynalist. I know people have developed CSS to provide background-color coding for the entire bullet, but often I want to highlight just a word or phrase within a bullet.
Then it occurred to me that I really donât use the Strikethrough formatting feature in Markdown at all, so why not use CSS to repurpose that as a highlighting feature?
Hereâs my CSS for this specific feature:
.node-strike-through {
text-decoration: none;
background: yellow;
padding: .25em 0;
}
And itâs nice that this change doesnât interfere with Dynalistâs native functionality of crossing off âcompleted itemsâ
I do like the fact that the markdown itself is included in the search function in Dynalist, so to find any highlights, I can simply search Dynalist for â~~â, and it returns my highlighted results.