ESP32Cube Logo
Sign In
Obsidian remove strikethrough on completed tasks

Obsidian remove strikethrough on completed tasks

esp32cube
May 14, 2026
Tutorial
1256 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

Share this article

Comments

0

Please sign in to post a comment.

No comments yet.

Related Articles

ESP32 Arduino Button Input: Practical Guide and Debouncing

Tutorial·158 views

ESP32 + WS2812B LED Strip + 18650 Battery: Rechargeable RGB Lighting Device

Tutorial·230 views

ESP32 LED Chaser (Running Light) Experiment

Tutorial·117 views

Control GPIO Output: Light Up an LED on ESP32

Tutorial·100 views

ESP32Cube Development Guide

Tutorial·123 views
View more in this category→
Copyright © 2026 ESP32Cube. All rights reserved.•1.0.1•Terms·Privacy
Source codeTwitterDiscord