Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,33 @@

All notable changes to the "markdown-extension-pack" extension pack will be documented in this file.

## 0.7.1

- Add [Markdown Preview](https://marketplace.visualstudio.com/items?itemName=ezrafree.markdown-preview), thanks for [ezrafree's PR](https://github.com/bat67/markdown-extension-pack/pull/8)

## 0.7.0

- Add [Medium to Markdown](https://marketplace.visualstudio.com/items?itemName=moshfeu.vscode-medium-to-markdown), thanks for [moshfeu's PR](https://github.com/bat67/markdown-extension-pack/pull/6)
- Fix unincluded [:emojisense:](https://marketplace.visualstudio.com/items?itemName=bierner.emojisense), thanks for [starriddle's issue](https://github.com/bat67/markdown-extension-pack/issues/5) and [RobertBernstein's PR](https://github.com/bat67/markdown-extension-pack/pull/7)

## 0.6.0

- Add [Markdown Shortcuts](https://marketplace.visualstudio.com/items?itemName=mdickin.markdown-shortcuts) and [Excel to Markdown table](https://marketplace.visualstudio.com/items?itemName=csholmq.excel-to-markdown-table), thanks for doggy8088's [issue1](https://github.com/bat67/markdown-extension-pack/issues/4) and [issue2](https://github.com/bat67/markdown-extension-pack/issues/3)

## 0.5.0

- Add [Markdown Checkboxes](https://marketplace.visualstudio.com/items?itemName=bierner.markdown-checkbox), [Markdown Preview Github Styling](https://marketplace.visualstudio.com/items?itemName=bierner.markdown-preview-github-styles), [:emojisense:](https://marketplace.visualstudio.com/items?itemName=bierner.emojisense), and [Markdown Paste](https://marketplace.visualstudio.com/items?itemName=telesoho.vscode-markdown-paste-image).
- Delete [VS Live Share](https://marketplace.visualstudio.com/items?itemName=MS-vsliveshare.vsliveshare)

## 0.4.0

- Add [Path Autocomplete](https://marketplace.visualstudio.com/items?itemName=ionutvmi.path-autocomplete)

## 0.3.0

- Add [VS Live Share](https://marketplace.visualstudio.com/items?itemName=MS-vsliveshare.vsliveshare), thanks for [lostintangent's PR](https://github.com/bat67/markdown-extension-pack/pull/2)
- Add [Markdown Table Prettifier](https://marketplace.visualstudio.com/items?itemName=darkriszty.markdown-table-prettify) and [Markdown Emoji](https://marketplace.visualstudio.com/items?itemName=bierner.markdown-emoji), thanks for [danilofreire' issue](https://github.com/bat67/markdown-extension-pack/issues/1)


## 0.1.2

- Add an icon/logo
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
- [Markdown Shortcuts](https://marketplace.visualstudio.com/items?itemName=mdickin.markdown-shortcuts) - Handy shortcuts for editing Markdown (.md, .markdown) files. You can also use markdown formats in any other file.
- [Excel to Markdown table](https://marketplace.visualstudio.com/items?itemName=csholmq.excel-to-markdown-table) - This VSCode extension converts Excel data to Markdown table format. Available through command Excel to Markdown table and keyboard shortcut Shift+Alt+V.
- [Medium to Markdown](https://marketplace.visualstudio.com/items?itemName=moshfeu.vscode-medium-to-markdown) - Use Medium to Markdown to fetch and convert your Medium posts into local markdown files.
- [Markdown Preview](https://marketplace.visualstudio.com/items?itemName=ezrafree.markdown-preview) - Add copy button to fenced code blocks, adjust built-in VS Code preview styling.

## Contributing

Expand Down
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,38 @@
"name": "markdown-extension-pack",
"displayName": "Markdown Extension Pack",
"description": "Popular Visual Studio Code extensions for Markdown",
"version": "0.7.0",
"version": "0.7.1",
"publisher": "bat67",
"icon": "icon.jpg",
"engines": {
"vscode": "^1.10.0"
},
"galleryBanner": {
"color": "#333333",
"theme": "dark"
"theme": "dark"
},
"keywords": [
"markdown",
"markdownlint",
"markdownlint",
"LaTex",
"linter",
"extension pack"
],
"extension pack"
],
"categories": [
"Extension Packs"
],
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/bat67/markdown-extension-pack"
},
"homepage": "https://github.com/bat67/markdown-extension-pack",
"bugs": {
"type": "git",
"url": "https://github.com/bat67/markdown-extension-pack"
},
"homepage": "https://github.com/bat67/markdown-extension-pack",
"bugs": {
"url": "https://github.com/bat67/markdown-extension-pack/issues"
},
"extensionDependencies": [
"extensionDependencies": [
"yzhang.markdown-all-in-one",
"DavidAnson.vscode-markdownlint",
"DavidAnson.vscode-markdownlint",
"goessner.mdmath",
"shd101wyy.markdown-preview-enhanced",
"yzane.markdown-pdf",
Expand All @@ -47,6 +47,7 @@
"telesoho.vscode-markdown-paste-image",
"mdickin.markdown-shortcuts",
"csholmq.excel-to-markdown-table",
"moshfeu.vscode-medium-to-markdown"
"moshfeu.vscode-medium-to-markdown",
"ezrafree.vscode-markdown-preview"
]
}
}