I like what dev.to is doing and want to move my content over here. This post on Publishing RSS feed to dev.to helped me get going. However, after the posts were imported and showed up, I couldn't at first find out how to actually publish them:
Clicking on the article just gives you a chance to edit it, but there is no button to Publish as when you create a new post on dev.to.
The solution is easy once you know it :)
Click on Draft to enter the edit screen. It will show you something like this at the top of your text:
---
title: "All you need for working with Python 3 on a Mac"
published: false
date: 2018-09-08 18:50:16 UTC
tags: beginnercoding,setup,beginnersguide,python
canonical_url: https://medium.com/@martin.breuss/all-you-need-for-working-with-python-3-on-a-mac-c811ac094869
---
To publish, all you need to do is change:
published: false
to published: true
Save, and your syndicated post is live on dev.to :)
Top comments (2)
Thank you very much for this!
Thank you! I was so lost.