I’ve written various scripts and programs over the years for managing my personal website and blog. BlogIt is the latest incarnation taking over duties from the now venerable pttk. I’ve found increasingly there are good off the shelf options for software chores. Examples include PageFind and FlatLake. Between those two you have a turn key search system and a JSON API. FlatLake itself can turn your CommonMark front matter into an aggregated JSON API. This is particularly nice for implementing features like RSS feeds and sitemap XML files. The net result is the tools I’ve previously written for similar tasks are no longer needed. This lead to re-access what my old “blogit” tool did. Core features are as follows.
BlogIt is now implemented in TypeScript and compiled to an executable via Deno. It is focused on curating the metadata around blog post and “publishing” it to a blog staging directory.
Presently the prototype is less than 2000 lines of TypeScript.
BlogIt is in the early stage of development and not currently built for distribution. You can easily compile BlogIt using Deno.
Also helpful if you use BlogIt to generate a blog website.
jq but for HTML documentsdeno task build./bin/blogit (or .\bin\blogit.exe on
Windows) to someplace in your path
(e.g. $HOME/.deno/bin)git clone https://github.com/rsdoiel/BlogIt
cd BlogIt
deno task build
./bin/blogit --help
cp -v ./bin/blogit $HOME/.deno/bin/
blogit --version
Or for Windows 10/11 using PowerShell
git clone https://github.com/rsdoiel/BlogIt
cd BlogIt
deno task build
./bin/blogit --help
copy .\bin\blogit.exe $HOME\.deno\bin\
blogit --version
GNU Affero General Public License 3.0 or newer, see https://www.gnu.org/licenses/agpl-3.0.html#license-text