ESP32Cube Logo
Sign In
Obsidian remove strikethrough on completed tasks

Obsidian remove strikethrough on completed tasks

esp32cube
Mar 30, 2026
Tutorial
1057 views

This post shows how to remove strikethrough on completed tasks in Obsidian.

ESP32Tutorial

The default task style in obsidian like this, there is a strikethrough for the done task. That will effect the reading. If we want to remove the strikethrough, it can be done by provide a customer .css file.

1. [x] Do first step. There are some task need to do in first step. For example, testing with bad samples. ✅ 2024-12-20
2. [ ] Do next step
3. [ ] Do following step

Default style Pasted image 20241220092046.jpeg

We can remove the strikethrough style by add below css style.

create a .css file under folder .obsidian\snippets

.markdown-source-view.mod-cm6 .HyperMD-task-line[data-task="x"],
.markdown-source-view.mod-cm6 .HyperMD-task-line[data-task="X"] {
    text-decoration: none;
    color: inherit;
}

and in the setting --> Appearance --> CSS snippets, active the css file. Here is the ceckboxes.css

Pasted image 20241220141348.jpeg

Then the to do list will looks like:

Pasted image 20241220092350.jpeg

Comments

0

Please sign in to post a comment.

No comments yet.

Related Articles

L298N DC Motor Driver Module Complete Guide

Tutorial·15 views

AI Chat with Xiaozhi

Tutorial·32 views

AI Chat with Xiaozhi

Tutorial·37 views

Audio Playback with HSC001 and ESP32

Tutorial·437 views

How to Play Internet Radio Stations with ESP32

Tutorial·1019 views
View more in this category→
Copyright © 2026 ESP32Cube. All rights reserved.•1.0.1•Terms·Privacy
Source codeTwitterDiscord
Obsidian remove strikethrough on completed tasks | ESP32Cube