# Obsidian - checkbox without strikethrough
 ---> 
## setting
setting -> appearance -> css snippets -> enter folder icon on the right -> create css file with below content -> enter reload icon -> enable your css file

## customFormat.css
```css
.markdown-source-view.mod-cm6 .HyperMD-task-line[data-task]:not([data-task=" "]) {
text-decoration:none;
color: var(--text-normal);
}
```