Skip to content

Commit

Permalink
Update: release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yzane committed Oct 26, 2019
1 parent a8af278 commit 8a3278a
Show file tree
Hide file tree
Showing 11 changed files with 2,573 additions and 35 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"markdown-pdf.outputDirectory": "sample",
"markdown-pdf.markdown-it-include.enable": false,
"debug.node.autoAttach": "on"
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.4.0 (2019/10/27)
* Add: Support [mermaid](https://github.com/knsv/mermaid)
* Added mermaid support. [#144](https://github.com/yzane/vscode-markdown-pdf/pull/144)

## 1.3.1 (2019/09/30)
* Update: README
* Update: CHANGELOG
Expand Down
33 changes: 24 additions & 9 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
* [markdown-it-include](https://github.com/camelaissani/markdown-it-include)
* [PlantUML](http://plantuml.com/)
* [markdown-it-plantuml](https://github.com/gmunguia/markdown-it-plantuml)
* [mermaid](http://knsv.github.io/mermaid/)
* [knsv/mermaid](https://github.com/knsv/mermaid)

サンプルファイル
* [pdf](sample/README.pdf)
Expand Down Expand Up @@ -96,6 +98,24 @@ Content of plugins/README.md
Content of CHANGELOG.md
```

### mermaid

INPUT
<pre>
```mermaid
stateDiagram
[*] --> First
state First {
[*] --> second
second --> [*]
}
```
</pre>

OUTPUT

![mermaid](images/mermaid.png)

## インストール

Markdown PDF をインストールして、Visutal Studio Code で Markdownファイルを最初に開いた時、Chromium のダウンロードが自動で始まります。
Expand Down Expand Up @@ -540,15 +560,9 @@ Visual Studio Code の `files.autoGuessEncoding` オプションを使うと、

## [Release Notes](CHANGELOG.md)

### 1.3.1 (2019/09/30)
* Update: README
* Update: CHANGELOG

### 1.3.0 (2019/09/30)
* Add: Support [markdown-it-include](https://github.com/camelaissani/markdown-it-include)
* Integrate markdown-it-include plugin [#138](https://github.com/yzane/vscode-markdown-pdf/pull/138)
* Add: `markdown-pdf.markdown-it-include.enable` option
* Update: README
### 1.4.0 (2019/10/27)
* Add: Support [mermaid](https://github.com/knsv/mermaid)
* Added mermaid support. [#144](https://github.com/yzane/vscode-markdown-pdf/pull/144)


## License
Expand All @@ -569,6 +583,7 @@ MIT
* [markdown-it/markdown-it-container](https://github.com/markdown-it/markdown-it-container)
* [gmunguia/markdown-it-plantuml](https://github.com/gmunguia/markdown-it-plantuml)
* [camelaissani/markdown-it-include](https://github.com/camelaissani/markdown-it-include)
* [knsv/mermaid](https://github.com/knsv/mermaid)

and

Expand Down
33 changes: 24 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Supports the following features
* [markdown-it-include](https://github.com/camelaissani/markdown-it-include)
* [PlantUML](http://plantuml.com/)
* [markdown-it-plantuml](https://github.com/gmunguia/markdown-it-plantuml)
* [mermaid](http://knsv.github.io/mermaid/)
* [knsv/mermaid](https://github.com/knsv/mermaid)

Sample files
* [pdf](sample/README.pdf)
Expand Down Expand Up @@ -98,6 +100,24 @@ Content of plugins/README.md
Content of CHANGELOG.md
```

### mermaid

INPUT
<pre>
```mermaid
stateDiagram
[*] --> First
state First {
[*] --> second
second --> [*]
}
```
</pre>

OUTPUT

![mermaid](images/mermaid.png)

## Install

Chromium download starts automatically when Markdown PDF is installed and Markdown file is first opened with Visutal Studio Code.
Expand Down Expand Up @@ -546,15 +566,9 @@ Please use the following to insert a page break.

## [Release Notes](CHANGELOG.md)

### 1.3.1 (2019/09/30)
* Update: README
* Update: CHANGELOG

### 1.3.0 (2019/09/30)
* Add: Support [markdown-it-include](https://github.com/camelaissani/markdown-it-include)
* Integrate markdown-it-include plugin [#138](https://github.com/yzane/vscode-markdown-pdf/pull/138)
* Add: `markdown-pdf.markdown-it-include.enable` option
* Update: README
### 1.4.0 (2019/10/27)
* Add: Support [mermaid](https://github.com/knsv/mermaid)
* Added mermaid support. [#144](https://github.com/yzane/vscode-markdown-pdf/pull/144)


## License
Expand All @@ -575,6 +589,7 @@ MIT
* [markdown-it/markdown-it-container](https://github.com/markdown-it/markdown-it-container)
* [gmunguia/markdown-it-plantuml](https://github.com/gmunguia/markdown-it-plantuml)
* [camelaissani/markdown-it-include](https://github.com/camelaissani/markdown-it-include)
* [knsv/mermaid](https://github.com/knsv/mermaid)

and

Expand Down
Binary file added images/mermaid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8a3278a

Please sign in to comment.