From 91b0b59f5760ba71cb1aa774e38fdb655fbe2d00 Mon Sep 17 00:00:00 2001 From: Yiyi Wang Date: Fri, 11 Aug 2017 17:09:09 -0500 Subject: [PATCH] Done version 0.2.5. --- docs/newest.md | 11 +++++++++++ package.json | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/newest.md b/docs/newest.md index ab3cd1f..0fc9331 100644 --- a/docs/newest.md +++ b/docs/newest.md @@ -2,6 +2,17 @@ I will be busy hunting jobs (August & September), so I won't have time to implement new features for this extension. The updates in the following two months will be bug fixes only. +## 0.2.5 +* Fixed revealjs html export style bug. +* Supported configuring attributes for diagram **containers**. +For example: + + ```puml {.center} + // your code here + ``` + will add `class="center"` to the container. +* By default, all exported files will use `github-light.css` style. You can use your preview theme for export by setting `printBackground` to `true` from the extension settings, or add `print_background:true` to front-matter. + ## 0.2.3 & 0.2.4 * The old feature [WaveDrom diagram](https://shd101wyy.github.io/markdown-preview-enhanced/#/diagrams?id=wavedrom) is now supported again. * The doc of customization css is updated, please [check it here](https://shd101wyy.github.io/markdown-preview-enhanced/#/customize-css). diff --git a/package.json b/package.json index bc1ce2f..e1845ba 100644 --- a/package.json +++ b/package.json @@ -315,7 +315,7 @@ ] }, "markdown-preview-enhanced.printBackground": { - "description": "Whether to print background for PDF file export or not. If set to `false`, then `github-light` preview theme will be used.", + "description": "Whether to print background for file export or not. If set to `false`, then `github-light` preview theme will be used. You can also set `print_background` in front-matter for individual files.", "default": false, "type": "boolean" }, @@ -360,7 +360,7 @@ "package": "vsce package" }, "dependencies": { - "@shd101wyy/mume": "^0.1.8" + "@shd101wyy/mume": "^0.1.9" }, "devDependencies": { "@types/jquery": "^2.0.46", @@ -371,4 +371,4 @@ "typescript": "^2.0.3", "vscode": "^1.0.0" } -} \ No newline at end of file +}