Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yzane committed Apr 21, 2018
1 parent 5dd5b37 commit 39a665d
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 1.0.1 (2018/04/21)
* Add: Allow online (https) CSS in `markdown-pdf.styles` [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)

## 1.0.0 (2018/04/15)
* Change: Replace pdf converter with puppeteer instead of html-pdf
* Add: Support multiple types in markdown-pdf.type option
Expand Down
16 changes: 14 additions & 2 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- [拡張機能 設定](#拡張機能-設定)
- [オプション](#オプション)
- [FAQ](#faq)
- [既知の問題](#既知の問題)
- [Release Notes](#release-notes)
- [License](#license)
- [Special thanks](#special-thanks)
Expand Down Expand Up @@ -154,6 +155,7 @@

#### `markdown-pdf.styles`
- markdown-pdf で使用するスタイルシートのパスを指定します
- オンラインCSS (https://xxx/xxx.css) は JPG と PNG では正しく適用されますが、PDF では問題が発生します [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)

```javascript
"markdown-pdf.styles": [
Expand All @@ -163,7 +165,8 @@
"/home/<USERNAME>/settings/markdown-pdf.css", // OK
".vscode\\markdown-pdf.css", // OK. 相対パス (Windows)
".vscode/markdown-pdf.css", // OK. 相対パス
"markdown-pdf.css.css" // OK. 相対パス
"markdown-pdf.css.css", // OK. 相対パス
"https://xxx/xxx.css"
],
```

Expand Down Expand Up @@ -333,11 +336,20 @@
```


## 既知の問題

### `markdown-pdf.styles` option
* オンラインCSS (https://xxx/xxx.css) は JPG と PNG では正しく適用されますが、PDF では問題が発生します [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)


## [Release Notes](CHANGELOG.md)

### 1.0.1 (2018/04/21)
* Add: Allow online (https) CSS in `markdown-pdf.styles` [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)

### 1.0.0 (2018/04/15)
* Change: Replace pdf converter with puppeteer instead of html-pdf
* Add: Support multiple types in markdown-pdf.type option
* Add: Support multiple types in `markdown-pdf.type` option
* Add: Define Multiple outputformats [#20](https://github.com/yzane/vscode-markdown-pdf/issues/20)
* Add: Support markdown-it-named-headers
* Fix: TOC extension not working on Convert Markdown to PDF [#31](https://github.com/yzane/vscode-markdown-pdf/issues/31)
Expand Down
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ This extension convert Markdown file to pdf, html, png or jpeg file.
- [Extension Settings](#extension-settings)
- [Options](#options)
- [FAQ](#faq)
- [Known Issues](#known-issues)
- [Release Notes](#release-notes)
- [License](#license)
- [Special thanks](#special-thanks)
Expand Down Expand Up @@ -156,6 +157,8 @@ Sample files

#### `markdown-pdf.styles`
- A list of local paths to the stylesheets to use from the markdown-pdf
- Online CSS (https://xxx/xxx.css) is applied correctly for JPG and PNG, but problems occur with PDF [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)


```javascript
"markdown-pdf.styles": [
Expand All @@ -165,7 +168,8 @@ Sample files
"/home/<USERNAME>/settings/markdown-pdf.css", // OK
".vscode\\markdown-pdf.css", // OK. Relative path (Windows)
".vscode/markdown-pdf.css", // OK. Relative path
"markdown-pdf.css.css" // OK. Relative path
"markdown-pdf.css.css", // OK. Relative path
"https://xxx/xxx.css"
],
```

Expand Down Expand Up @@ -335,11 +339,20 @@ Sample files
```


## Known Issues

### `markdown-pdf.styles` option
* Online CSS (https://xxx/xxx.css) is applied correctly for JPG and PNG, but problems occur with PDF. [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)


## [Release Notes](CHANGELOG.md)

### 1.0.1 (2018/04/21)
* Add: Allow online (https) CSS in `markdown-pdf.styles` [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)

### 1.0.0 (2018/04/15)
* Change: Replace pdf converter with puppeteer instead of html-pdf
* Add: Support multiple types in markdown-pdf.type option
* Add: Support multiple types in `markdown-pdf.type` option
* Add: Define Multiple outputformats [#20](https://github.com/yzane/vscode-markdown-pdf/issues/20)
* Add: Support markdown-it-named-headers
* Fix: TOC extension not working on Convert Markdown to PDF [#31](https://github.com/yzane/vscode-markdown-pdf/issues/31)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "markdown-pdf",
"displayName": "Markdown PDF",
"description": "Convert Markdown to PDF",
"version": "1.0.0",
"version": "1.0.1",
"publisher": "yzane",
"icon": "images/icon.png",
"engines": {
Expand Down

0 comments on commit 39a665d

Please sign in to comment.