This is an Obsidian plugin which can enables diff display with syntax highlighting in Obsidian code blocks for efficient code comparison and review.
```diff java
class User {
public string name;
public number age;
public string email;
- public string phone;
+ public string phoneNumber;
}
```↓
You can customize the background colors for added and removed lines in the diff.
These settings can be configured in the same way as the color property in CSS.
| Setting Option | Example Configuration |
|---|---|
| Added Line Background Color | rgba(0, 255, 128, 0.1) |
| Removed Line Background Color | rgba(255, 0, 0, 0.1) |
