0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 09:12:45 +00:00

Remove extra |:--:| in table

This is invalid markdown.
This commit is contained in:
Trevor Buckner
2020-02-04 12:06:36 -05:00
committed by GitHub
parent b3387c363f
commit 3259836964

View File

@@ -72,7 +72,7 @@ module.exports = {
let slots = 2;
return `<div class='classTable wide'>\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</div>\n\n`;
}
};
};