protiumx / blogpub

Github action to publish your blog articles from Markdown to Medium or Dev.to
Apache License 2.0
30 stars 6 forks source link

feat: add support to relative paths for media content #12

Closed protiumx closed 2 years ago

protiumx commented 2 years ago

As mentioned in #11 I wanted to provide a way to use relative images. In this PR I introduced the possibility to use @ as relative path to be later replaced for https://raw.githubusercontent.com/<user>/<repo>/<articles_folder>.

Example:

![img](@/image.png)

is parsed into:

![img](https://raw.githubusercontent.com/<user>/<repo>/<articles_folder>/image.png)