Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moshfeu/vscode-medium-to-markdown
A vscode extension to convert Medium posts to local markdown file
https://github.com/moshfeu/vscode-medium-to-markdown
markdown medium medium-posts typescript vscode vscode-extension
Last synced: 22 days ago
JSON representation
A vscode extension to convert Medium posts to local markdown file
- Host: GitHub
- URL: https://github.com/moshfeu/vscode-medium-to-markdown
- Owner: moshfeu
- Created: 2021-01-10T08:51:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-13T07:28:37.000Z (over 2 years ago)
- Last Synced: 2024-10-02T09:58:15.519Z (about 1 month ago)
- Topics: markdown, medium, medium-posts, typescript, vscode, vscode-extension
- Language: TypeScript
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
### Due a change in the Medium API, this extension is no longer working. If I'll find a way to fix it, I'll publish it again. Sorry
# Medium to Markdown
Use Medium to Markdown to fetch and convert your Medium posts into local markdown files.
## How to use?
Run the command bellow in the [Command Palette](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette)
```
> Medium to Markdown: Convert Medium post
```## Options
```json
{
"downloadPath": "relative/path/to/your/posts/folder",
"fileType": "md", // or "mdx"
"frontmatter": true, // adds frontmatter data
"canonical": false // adds canoniacl tags - not relevant if "frontmatter" = false
}
```## Notice
This extension is basically a wrapper on top of [mediumexporter](https://github.com/moshfeu/mediumexporter/tree/additions) (forked from [xdamman](https://github.com/xdamman/mediumexporter)).
The converter uses some heuristics and the result may not looks exactly how you'd like.
Please review the result before publishing it.If you see how it can be improved please create an issue here or in the forked repo. Thank you.