diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b434d30..80544cbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ ### Changed - Upgrade Marp Core to [v0.13.1](https://github.com/marp-team/marp-core/releases/v0.13.1) and Marp CLI to [v0.14.1](https://github.com/marp-team/marp-cli/releases/v0.14.1) ([#70](https://github.com/marp-team/marp-vscode/pull/70)) +- Disable style minification on preview ([#71](https://github.com/marp-team/marp-vscode/pull/71)) ## v0.9.0 - 2019-08-28 diff --git a/src/option.ts b/src/option.ts index 4fe5341b..0f1a9be4 100644 --- a/src/option.ts +++ b/src/option.ts @@ -57,6 +57,7 @@ export const marpCoreOptionForPreview = ( dollarPrefixForGlobalDirectives: true, html: marpConfiguration().get('enableHtml') || undefined, markdown: { breaks: breaks(!!baseOption.breaks) }, + minifyCSS: false, } } return cachedPreviewOption