Most active commenters

    9 points freemanjiang | 14 comments | | HN request time: 0.936s | source | bottom

    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. ben_w ◴[] No.46279985[source]
    I use HTML directly, with a small custom-made wrapper so all I write is the main content itself, not the head element or the visible footer. Some scripts to build the index page, the tags page, the categories page. Hosted on GitHub, but it would work just as well on my own domain. I made some stylesheets for fun, the default is deliberately minimalistic.

    I've found I have so few readers I don't really need a comment section, so I've not even implemented one.

    2. midzer ◴[] No.46280140[source]
    I use a Static Site Generator (SSG) regularly.

    You will have wysiwyg when you develop locally.

    Here's an overview over some tools: http://staticgen.com/

    replies(2): >>46280617 #>>46281680 #
    3. freemanjiang ◴[] No.46280617[source]
    I see, yeah I use Next.js pretty regularly, you mean on hot reload then?

    You still need to write your content as Markdown or something else, right? I feel the editors of Substack give some nice features like shortcuts for bold, italics. What do you do about that?

    replies(1): >>46300216 #
    4. wannabebarista ◴[] No.46281680[source]
    I tried several on this list a few years ago and found Jekyll the most flexible/enjoyable for my use case. It's a bit dated though.
    5. chistev ◴[] No.46285157[source]
    I use a rich text editor.
    6. mikewarot ◴[] No.46287174[source]
    I still use Blogger. I'm amazed it hasn't been killed yet.
    7. 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.

    8. pajamasam ◴[] No.46287655[source]
    Currently, Markdown files + Vuepress. Finding/improving your tech stack and workflow for your blog is part of the fun!
    9. mmarian ◴[] No.46288210[source]
    I use Astro, so Markdown; organised by year-month folder.
    replies(1): >>46289038 #
    10. TechSquidTV ◴[] No.46289038[source]
    I hadn't considered sub organization directories. Smart. I may implment that.
    11. melwinalm2 ◴[] No.46297972[source]
    I use Astro. It has all the features that I need.
    12. sathyabhat ◴[] No.46298551[source]
    > 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?

    Most editors have Markdown preview. There's also products like Ghost which are pretty good

    13. konradb ◴[] No.46300216{3}[source]
    You can use nextjs to statically generate a whole site, or incrementally regenerate it for slowly changing parts.