Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.

screen record

## 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.