From 3259836964c363c4abfb0fca52f7e898cde1991d Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Tue, 4 Feb 2020 12:06:36 -0500 Subject: [PATCH] Remove extra |:--:| in table This is invalid markdown. --- client/homebrew/editor/snippetbar/snippets/classtable.gen.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/homebrew/editor/snippetbar/snippets/classtable.gen.js b/client/homebrew/editor/snippetbar/snippets/classtable.gen.js index 3a446cd7b..867aa625e 100644 --- a/client/homebrew/editor/snippetbar/snippets/classtable.gen.js +++ b/client/homebrew/editor/snippetbar/snippets/classtable.gen.js @@ -72,7 +72,7 @@ module.exports = { let slots = 2; return `
\n##### The ${classname}\n` + `| Level | Proficiency Bonus | Features | Cantrips Known | Spells Known | 1st | 2nd | 3rd | 4th | 5th | 6th | 7th | 8th | 9th |\n`+ - `|:---:|:---:|:---|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|\n${ + `|:---:|:---:|:---|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|\n${ _.map(levels, function(levelName, level){ const res = [ levelName, @@ -111,4 +111,4 @@ module.exports = { return `| ${res} |`; }).join('\n')}\n
\n\n`; } -}; \ No newline at end of file +};