obsidian-tasks-group / obsidian-tasks-custom-icons

Replace emojis used in Obsidian Tasks with monotone SVGs (obsidian css snippet generator)
58 stars 9 forks source link

Add support for Task Dependency emojis #5

Closed claremacrae closed 5 months ago

claremacrae commented 6 months ago
    blockedBySymbol: '⛔️',
    idSymbol: '🆔',
claremacrae commented 6 months ago

Good spot... Thank you.

I don't know if it makes a difference, but unlike other emojis, the Postpone icon comes from CSS rather than TypeScript code:

https://github.com/obsidian-tasks-group/obsidian-tasks/blob/e6b19591bbeee080e6ef2afc33e88eed8511662d/src/Renderer/Renderer.scss#L71-L73

.tasks-postpone::after {
    content: '⏩';
}