←back to thread

9 points freemanjiang | 1 comments | | HN request time: 0.196s | source

I would like to start a personal blog. I think Substack is a good option, but I would like more control over styling (potentially custom components) and want to host the blog on my own website.

I wanted to ask what the writing and hosting process is like for people who have a personal website and blog—do you just write markdown and then use a renderer?

I would like a kind of wysiwyg editor to see exactly how the content will appear once loaded. The issue with writing in a separate editor is that the line breaks, line lengths, font, etc. never appear how they will actually look. Thanks!

1. krapp ◴[] No.46287226[source]
I use Nikola, a static site generator written in Python (which I don't particularly like as a language but the app does what I want almost exactly the way I want it to.)

I write new posts in Sublime Text as Markdown (I also use my blog to archive Mastodon posts which go in a different folder than my blog posts) and then it does its thing and generates an HTML site which I git push to my server. I use a plugin to integrate comments from my Mastodon account.

It doesn't have a wysiwyg editor per se but it does have a local server with hot loading so I can see how it would look.