-
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
I was under the same impression as well. I have been using https://docusaurus.io/ for some time now and I am very happy with it and I am pretty sure there are other tools out there as well.
-
There's actually a quite featureful version of org for Neovim: nvim-orgmode https://github.com/nvim-orgmode/orgmode
-
-
I use this one which is also nice: https://github.com/oscarmorrison/md-page
-
Grav
Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS powered by PHP, Markdown, Twig, and Symfony
The Grav CMS also internally uses Markdown for the page contents and generates static files: https://getgrav.org/
They do use YAML FrontMatter for attaching metadata so the CMS knows how to process certain pages (e.g. page title, page type etc.), but it isn't too complicated in practice: https://learn.getgrav.org/17/content/content-pages#page-file
They also have an admin plugin, which you can use if you prefer a more traditional workflow, even if it just generates the same file format under the hood: https://learn.getgrav.org/16/admin-panel/introduction
I'm actually using an ancient version of Grav for my own blog, although I had to put the admin path behind additional auth (in addition to the one it already provides), for safety: https://blog.kronis.dev/
I really like hybrid systems like that: a CMS for blogging or just writing in general that's based on Markdown, generates static files for decent performance, but is also extensible with additional functionality, and also has a decent web UI if you want one.
(there are probably other CMSes like that out there, or more generic solutions, too)
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
-
I did something similar, but for adding a blog system to a server running PHP: https://github.com/Cristy94/markdown-blog
The idea is that having it server-side allows for the page to be cached by a CDN (e.g. CloudFlare), so you end up serving static HTML, with better performance and SEO than JS-compiled markdown.
Related posts
-
Copying a Feature from Docusaurus 🦖 For My Static Site Generator - rwar 🦁
-
PineDocs: A fast and lightweight site for viewing files
-
Recomendations to build a learning platform for a small company?
-
Markdown's Big Brother: Say Hello to AsciiDoc
-
Proposal for adding Astro as a recomended framework in the React docs