@marp-team/marpit
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -5,2 +5,8 @@ # Change Log | ||
## v2.0.1 - 2021-04-27 | ||
### Fixed | ||
- Fix regression: Append inline styles into the end of CSS correctly ([#288](https://github.com/marp-team/marpit/issues/288), [#289](https://github.com/marp-team/marpit/pull/289)) | ||
## v2.0.0 - 2021-03-26 | ||
@@ -7,0 +13,0 @@ |
@@ -290,3 +290,5 @@ "use strict"; | ||
const before = additionalCSS(opts.before); | ||
const packer = (0, _postcss.default)([before && (0, _postcss_plugin.default)('marpit-pack-before', () => css => css.first.before(before)), after && (0, _postcss_plugin.default)('marpit-pack-after', () => css => css.first.after(after)), _rollup.default, (0, _replace.default)(this), opts.printable && (0, _printable.default)({ | ||
const packer = (0, _postcss.default)([before && (0, _postcss_plugin.default)('marpit-pack-before', () => css => css.first.before(before)), after && (0, _postcss_plugin.default)('marpit-pack-after', () => css => { | ||
css.last.after(after); | ||
}), _rollup.default, (0, _replace.default)(this), opts.printable && (0, _printable.default)({ | ||
width: this.getThemeProp(theme, 'width'), | ||
@@ -293,0 +295,0 @@ height: this.getThemeProp(theme, 'height') |
{ | ||
"name": "@marp-team/marpit", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "The skinny framework for creating slide deck from Markdown", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
174778
3425