Skip to content

Commit 52c5bab

Browse files
committed
1 parent 90c2e09 commit 52c5bab

File tree

5 files changed

+34
-6
lines changed

5 files changed

+34
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## 1.0.1 (2018/04/21)
4+
* Add: Allow online (https) CSS in `markdown-pdf.styles` [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)
5+
36
## 1.0.0 (2018/04/15)
47
* Change: Replace pdf converter with puppeteer instead of html-pdf
58
* Add: Support multiple types in markdown-pdf.type option

README.ja.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- [拡張機能 設定](#拡張機能-設定)
1515
- [オプション](#オプション)
1616
- [FAQ](#faq)
17+
- [既知の問題](#既知の問題)
1718
- [Release Notes](#release-notes)
1819
- [License](#license)
1920
- [Special thanks](#special-thanks)
@@ -154,6 +155,7 @@
154155

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

158160
```javascript
159161
"markdown-pdf.styles": [
@@ -163,7 +165,8 @@
163165
"/home/<USERNAME>/settings/markdown-pdf.css", // OK
164166
".vscode\\markdown-pdf.css", // OK. 相対パス (Windows)
165167
".vscode/markdown-pdf.css", // OK. 相対パス
166-
"markdown-pdf.css.css" // OK. 相対パス
168+
"markdown-pdf.css.css", // OK. 相対パス
169+
"https://xxx/xxx.css"
167170
],
168171
```
169172

@@ -333,11 +336,20 @@
333336
```
334337

335338

339+
## 既知の問題
340+
341+
### `markdown-pdf.styles` option
342+
* オンラインCSS (https://xxx/xxx.css) は JPG と PNG では正しく適用されますが、PDF では問題が発生します [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)
343+
344+
336345
## [Release Notes](CHANGELOG.md)
337346

347+
### 1.0.1 (2018/04/21)
348+
* Add: Allow online (https) CSS in `markdown-pdf.styles` [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)
349+
338350
### 1.0.0 (2018/04/15)
339351
* Change: Replace pdf converter with puppeteer instead of html-pdf
340-
* Add: Support multiple types in markdown-pdf.type option
352+
* Add: Support multiple types in `markdown-pdf.type` option
341353
* Add: Define Multiple outputformats [#20](https://github.com/yzane/vscode-markdown-pdf/issues/20)
342354
* Add: Support markdown-it-named-headers
343355
* Fix: TOC extension not working on Convert Markdown to PDF [#31](https://github.com/yzane/vscode-markdown-pdf/issues/31)

README.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This extension convert Markdown file to pdf, html, png or jpeg file.
1616
- [Extension Settings](#extension-settings)
1717
- [Options](#options)
1818
- [FAQ](#faq)
19+
- [Known Issues](#known-issues)
1920
- [Release Notes](#release-notes)
2021
- [License](#license)
2122
- [Special thanks](#special-thanks)
@@ -156,6 +157,8 @@ Sample files
156157

157158
#### `markdown-pdf.styles`
158159
- A list of local paths to the stylesheets to use from the markdown-pdf
160+
- 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)
161+
159162

160163
```javascript
161164
"markdown-pdf.styles": [
@@ -165,7 +168,8 @@ Sample files
165168
"/home/<USERNAME>/settings/markdown-pdf.css", // OK
166169
".vscode\\markdown-pdf.css", // OK. Relative path (Windows)
167170
".vscode/markdown-pdf.css", // OK. Relative path
168-
"markdown-pdf.css.css" // OK. Relative path
171+
"markdown-pdf.css.css", // OK. Relative path
172+
"https://xxx/xxx.css"
169173
],
170174
```
171175

@@ -335,11 +339,20 @@ Sample files
335339
```
336340

337341

342+
## Known Issues
343+
344+
### `markdown-pdf.styles` option
345+
* 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)
346+
347+
338348
## [Release Notes](CHANGELOG.md)
339349

350+
### 1.0.1 (2018/04/21)
351+
* Add: Allow online (https) CSS in `markdown-pdf.styles` [#67](https://github.com/yzane/vscode-markdown-pdf/issues/67)
352+
340353
### 1.0.0 (2018/04/15)
341354
* Change: Replace pdf converter with puppeteer instead of html-pdf
342-
* Add: Support multiple types in markdown-pdf.type option
355+
* Add: Support multiple types in `markdown-pdf.type` option
343356
* Add: Define Multiple outputformats [#20](https://github.com/yzane/vscode-markdown-pdf/issues/20)
344357
* Add: Support markdown-it-named-headers
345358
* Fix: TOC extension not working on Convert Markdown to PDF [#31](https://github.com/yzane/vscode-markdown-pdf/issues/31)

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "markdown-pdf",
33
"displayName": "Markdown PDF",
44
"description": "Convert Markdown to PDF",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"publisher": "yzane",
77
"icon": "images/icon.png",
88
"engines": {

0 commit comments

Comments
 (0)