From 576fca9b96bc7dbc3864a1951adf28eb68c477c9 Mon Sep 17 00:00:00 2001 From: Adam DeHaven Date: Sat, 23 Dec 2023 13:48:26 -0500 Subject: [PATCH] chore: table template --- src/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index eaf24ee0..8e6d1f7a 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -28,9 +28,9 @@ NEW_LINE_CHARACTER + /** The markdown template for a table */ export const MARKDOWN_TEMPLATE_TABLE = -'| Column 1 | Column 2 | Column 3 |' + NEW_LINE_CHARACTER + +'| Header | Header | Header |' + NEW_LINE_CHARACTER + '| :--- | :--- | :--- |' + NEW_LINE_CHARACTER + -'| Content | Content | Content |' +'| Cell | Cell | Cell |' /** The markdown template for a task. Ensure trailing space remains */ export const MARKDOWN_TEMPLATE_TASK = '- [ ] '