diff --git a/shared/naturalcrit/markdown.js b/shared/naturalcrit/markdown.js index 5e81be3f0..6c76194cb 100644 --- a/shared/naturalcrit/markdown.js +++ b/shared/naturalcrit/markdown.js @@ -372,9 +372,9 @@ const superSubScripts = { const justifiedParagraphClasses = []; -justifiedParagraphClasses[2] = 'mdParagraphJustifyLeft'; -justifiedParagraphClasses[4] = 'mdParagraphJustifyRight'; -justifiedParagraphClasses[6] = 'mdParagraphJustifyCenter'; +justifiedParagraphClasses[2] = 'Left'; +justifiedParagraphClasses[4] = 'Right'; +justifiedParagraphClasses[6] = 'Center'; const justifiedParagraphs = { name : 'justifiedParagraphs', @@ -402,7 +402,7 @@ const justifiedParagraphs = { } }, renderer(token) { - return `
${this.parser.parseInline(token.tokens)}
`; + return `${this.parser.parseInline(token.tokens)}
`; } }; diff --git a/themes/themes.json b/themes/themes.json index 46b6e57c3..16a4b9b13 100644 --- a/themes/themes.json +++ b/themes/themes.json @@ -36,14 +36,5 @@ "baseSnippets": "5ePHB", "path": "Journal" } - }, - "V4": { - "Blank": { - "name": "Blank", - "renderer": "V3", - "baseTheme": false, - "baseSnippets": false, - "path": "Blank" - } } } \ No newline at end of file