diff --git a/CHANGELOG.md b/CHANGELOG.md index db10385..7619b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 1.2.1 (2019/09/23) +* Fix: [fix typo, grammar](https://github.com/yzane/vscode-markdown-pdf/pull/122) +* Add: [Option to specify the plantuml delimiter](https://github.com/yzane/vscode-markdown-pdf/pull/104) +* Update: dependencies packages +* Update: README + * Delete the description of the obsolete options. + ## 1.2.0 (2018/05/03) * Add: Support [markdown-it-plantuml](https://github.com/gmunguia/markdown-it-plantuml) * Support for lightweight diagrams (PlantUML) [#60](https://github.com/yzane/vscode-markdown-pdf/issues/60) diff --git a/README.ja.md b/README.ja.md index d9f6dad..30eaf30 100644 --- a/README.ja.md +++ b/README.ja.md @@ -166,6 +166,8 @@ Markdown PDF をインストールして、Visutal Studio Code で Markdownフ ||[markdown-pdf.clip.width](#markdown-pdfclipwidth)| ||[markdown-pdf.clip.height](#markdown-pdfclipheight)| ||[markdown-pdf.omitBackground](#markdown-pdfomitbackground)| +|[PlantUML options](#plantuml-options)|[markdown-pdf.plantumlOpenMarker](#markdown-pdfplantumlopenmarker)| +||[markdown-pdf.plantumlCloseMarker](#markdown-pdfplantumlclosemarker)| ### Save options @@ -441,6 +443,16 @@ Markdown PDF をインストールして、Visutal Studio Code で Markdownフ - デフォルトの白い背景ではなく、透過によるスクリーンショットのキャプチャーを有効にします - boolean. Default: false +### PlantUML options + +#### `markdown-pdf.plantumlOpenMarker` + - plantuml パーサーの開始区切り文字 + - Default: @startuml + +#### `markdown-pdf.plantumlCloseMarker` + - plantuml パーサーの終了区切り文字 + - Default: @enduml +
## FAQ @@ -492,26 +504,12 @@ Visual Studio Code の `files.autoGuessEncoding` オプションを使うと、 ## [Release Notes](CHANGELOG.md) -### 1.2.0 (2018/05/03) -* Add: Support [markdown-it-plantuml](https://github.com/gmunguia/markdown-it-plantuml) - * Support for lightweight diagrams (PlantUML) [#60](https://github.com/yzane/vscode-markdown-pdf/issues/60) - -### 1.1.0 (2018/05/03) -* Add: Support [markdown-it-container](https://github.com/markdown-it/markdown-it-container) [#72](https://github.com/yzane/vscode-markdown-pdf/issues/72) - -### 1.0.5 (2018/05/03) -* Improve: Exception handling -* Improve: Chromium install check -* Add: Page break - * Is it possible to insert page breaks? [#25](https://github.com/yzane/vscode-markdown-pdf/issues/25) +### 1.2.1 (2019/09/23) +* Fix: [fix typo, grammar](https://github.com/yzane/vscode-markdown-pdf/pull/122) +* Add: [Option to specify the plantuml delimiter](https://github.com/yzane/vscode-markdown-pdf/pull/104) +* Update: dependencies packages * Update: README - * FAQ: Page break -* Update: markdown-pdf.css - * Add: Meiryo to font-family - -### 1.0.4 (2018/05/01) -* Fix: Display error message when downloading Chromium -* Improve: Chromium install. Display download progress on status bar + * Delete the description of the obsolete options. ## License diff --git a/README.md b/README.md index 8bf7b63..e7179fa 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,8 @@ If the download is not successful or you want to avoid downloading every time yo ||[markdown-pdf.clip.width](#markdown-pdfclipwidth)| ||[markdown-pdf.clip.height](#markdown-pdfclipheight)| ||[markdown-pdf.omitBackground](#markdown-pdfomitbackground)| +|[PlantUML options](#plantuml-options)|[markdown-pdf.plantumlOpenMarker](#markdown-pdfplantumlopenmarker)| +||[markdown-pdf.plantumlCloseMarker](#markdown-pdfplantumlclosemarker)| ### Save options @@ -447,6 +449,16 @@ If the download is not successful or you want to avoid downloading every time yo - Hides default white background and allows capturing screenshots with transparency - boolean. Default: false +### PlantUML options + +#### `markdown-pdf.plantumlOpenMarker` + - Oppening delimiter used for the plantuml parser. + - Default: @startuml + +#### `markdown-pdf.plantumlCloseMarker` + - Closing delimiter used for the plantuml parser. + - Default: @enduml + ## FAQ @@ -498,26 +510,12 @@ Please use the following to insert a page break. ## [Release Notes](CHANGELOG.md) -### 1.2.0 (2018/05/03) -* Add: Support [markdown-it-plantuml](https://github.com/gmunguia/markdown-it-plantuml) - * Support for lightweight diagrams (PlantUML) [#60](https://github.com/yzane/vscode-markdown-pdf/issues/60) - -### 1.1.0 (2018/05/03) -* Add: Support [markdown-it-container](https://github.com/markdown-it/markdown-it-container) [#72](https://github.com/yzane/vscode-markdown-pdf/issues/72) - -### 1.0.5 (2018/05/03) -* Improve: Exception handling -* Improve: Chromium install check -* Add: Page break - * Is it possible to insert page breaks? [#25](https://github.com/yzane/vscode-markdown-pdf/issues/25) +### 1.2.1 (2019/09/23) +* Fix: [fix typo, grammar](https://github.com/yzane/vscode-markdown-pdf/pull/122) +* Add: [Option to specify the plantuml delimiter](https://github.com/yzane/vscode-markdown-pdf/pull/104) +* Update: dependencies packages * Update: README - * FAQ: Page break -* Update: markdown-pdf.css - * Add: Meiryo to font-family - -### 1.0.4 (2018/05/01) -* Fix: Display error message when downloading Chromium -* Improve: Chromium install. Display download progress on status bar + * Delete the description of the obsolete options. ## License diff --git a/package.json b/package.json index d6b38e2..37a4a1e 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "markdown-pdf", "displayName": "Markdown PDF", "description": "Convert Markdown to PDF", - "version": "1.2.0", + "version": "1.2.1", "publisher": "yzane", "icon": "images/icon.png", "engines": { @@ -338,20 +338,6 @@ "default": "", "description": "pdf only. Paper ranges to print, e.g., '1-5, 8, 11-13'." }, - "markdown-pdf.plantumlOpenMarker": { - "type": [ - "string" - ], - "default": "@startuml", - "description": "Oppening delimiter used for the plantuml parser." - }, - "markdown-pdf.plantumlCloseMarker": { - "type": [ - "string" - ], - "default": "@enduml", - "description": "Closing delimiter used for the plantuml parser." - }, "markdown-pdf.format": { "type": [ "string", @@ -451,6 +437,20 @@ "default": false, "description": "Hides default white background and allows capturing screenshots with transparency." }, + "markdown-pdf.plantumlOpenMarker": { + "type": [ + "string" + ], + "default": "@startuml", + "description": "Oppening delimiter used for the plantuml parser." + }, + "markdown-pdf.plantumlCloseMarker": { + "type": [ + "string" + ], + "default": "@enduml", + "description": "Closing delimiter used for the plantuml parser." + }, "markdown-pdf.StatusbarMessageTimeout": { "type": "number", "default": 10000, diff --git a/sample/README.html b/sample/README.html index ee8ada8..42723dc 100644 --- a/sample/README.html +++ b/sample/README.html @@ -386,13 +386,8 @@This extension convert Markdown file to pdf, html, png or jpeg file.
- -This extension converts Markdown files to pdf, html, png or jpeg files.
+ver1.0.0 (new) | -ver0.x.x (obsolete) | -
---|---|
markdown-pdf.executablePath |
-- |
markdown-pdf.scale |
-- |
markdown-pdf.displayHeaderFooter |
-- |
markdown-pdf.headerTemplate |
-markdown-pdf.header.contents |
-
markdown-pdf.footerTemplate |
-markdown-pdf.footer.contents |
-
markdown-pdf.printBackground |
-- |
markdown-pdf.pageRanges |
-- |
markdown-pdf.width |
-- |
markdown-pdf.height |
-- |
markdown-pdf.margin.top |
-markdown-pdf.border.top |
-
- | markdown-pdf.header.height |
-
markdown-pdf.margin.bottom |
-markdown-pdf.border.bottom |
-
- | markdown-pdf.footer.height |
-
markdown-pdf.margin.right |
-markdown-pdf.border.right |
-
markdown-pdf.margin.left |
-markdown-pdf.border.left |
-
markdown-pdf.quality |
-- |
markdown-pdf.clip.x |
-- |
markdown-pdf.clip.y |
-- |
markdown-pdf.clip.width |
-- |
markdown-pdf.clip.height |
-- |
markdown-pdf.omitBackground |
-- |
markdown-pdf.omitBackground | |
PlantUML options | +markdown-pdf.plantumlOpenMarker | +
+ | markdown-pdf.plantumlCloseMarker | +
markdown-pdf.omitBackground
markdown-pdf.plantumlOpenMarker
markdown-pdf.plantumlCloseMarker
markdown-pdf.styles
optionMIT
@@ -1112,7 +1001,6 @@and
diff --git a/sample/README.jpeg b/sample/README.jpeg index 894b84e..92f6af3 100644 Binary files a/sample/README.jpeg and b/sample/README.jpeg differ diff --git a/sample/README.pdf b/sample/README.pdf index 9e25c21..9539f8b 100644 Binary files a/sample/README.pdf and b/sample/README.pdf differ diff --git a/sample/README.png b/sample/README.png index 97d3a12..077eacd 100644 Binary files a/sample/README.png and b/sample/README.png differ