diff --git a/lib/utils.js b/lib/utils.js index ed3ae99..245c691 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -42,7 +42,7 @@ function formatTask(task, options = {}) { // Tags if (task.tags && task.tags.length > 0) { - output += ` ${colors.dim('Tags:')} ${task.tags.map(tag => colors.highlight(`#${tag}`)).join(' ')}\n`; + output += ` ${colors.dim('Tags:')} ${task.tags.map(tag => colors.highlight(tag)).join(' ')}\n`; } // Contexts @@ -125,7 +125,7 @@ function formatPreview(parsed) { // Tags if (parsed.tags && parsed.tags.length > 0) { - output += `${colors.highlight('Tags:')} ${parsed.tags.map(tag => colors.info(`#${tag}`)).join(' ')}\n`; + output += `${colors.highlight('Tags:')} ${parsed.tags.map(tag => colors.info(tag)).join(' ')}\n`; } // Contexts