vimd 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -107,6 +107,7 @@ vimd config
|
|
|
107
107
|
| `vimd build <file>` | 静的HTMLを生成 |
|
|
108
108
|
| `vimd theme` | テーマを対話的に変更 |
|
|
109
109
|
| `vimd config` | 設定を対話的に編集 |
|
|
110
|
+
| `vimd kill` | 実行中のセッションを終了 |
|
|
110
111
|
|
|
111
112
|
### オプション
|
|
112
113
|
|
|
@@ -121,6 +122,10 @@ vimd dev draft.md --pandoc # pandocパーサーを使用
|
|
|
121
122
|
vimd build draft.md -o output.html # 出力先指定
|
|
122
123
|
vimd build draft.md --fast # markdown-itで高速ビルド
|
|
123
124
|
vimd build draft.md --theme dark # テーマ指定
|
|
125
|
+
|
|
126
|
+
# kill コマンド
|
|
127
|
+
vimd kill # 全セッションを終了
|
|
128
|
+
vimd kill --port 38080 # 特定ポートのセッションを終了
|
|
124
129
|
```
|
|
125
130
|
|
|
126
131
|
---
|
|
@@ -132,7 +137,7 @@ vimd build draft.md --theme dark # テーマ指定
|
|
|
132
137
|
```javascript
|
|
133
138
|
export default {
|
|
134
139
|
theme: 'github',
|
|
135
|
-
port:
|
|
140
|
+
port: 38080, // デフォルト: 38080(v0.2.1で変更)
|
|
136
141
|
open: true,
|
|
137
142
|
devParser: 'markdown-it', // dev用パーサー(デフォルト: markdown-it)
|
|
138
143
|
buildParser: 'pandoc', // build用パーサー(デフォルト: pandoc)
|