đŸ Archived View for dioskouroi.xyz âș thread âș 29382091 captured on 2021-11-30 at 20:18:30. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
________________________________________________________________________________
It would be nice if as part of the zero config effort, programs (esp. programs that aim to be easy-to-use Web-authoring tools) would focus even more on being as close to zero setup/zero installation as possible, too. To wit:
This program is written in TypeScript, a browser-incompatible dialect of JS that is nonetheless regularly compiled to standard JS, e.g. to transform a given module into a form that can run in the browserâand yet md2blog itself doesn't. You are expected to either download an out-of-band, platform-specific binary or use Deno to run it.
Instead, one should be able to use md2blog and similar programs by using the browser itself to open and run the program, considering it's the universal platform that everyone already has, and it's reasonable to expect that you're going to use it at some point in the pipeline, anyway (e.g. for proofing your work).
Even better quick start instructions would look something like this:
0. Start with a directory that contains the site sources that you intend to publish.
1. Save a copy of "md2blog.html" there, too (or anywhere, really).
2. Open the md2blog program in your browser by double clicking md2blog.html.
3. Drag and drop the directory with your Markdown sources (same one from steps 0 and 1) into the newly opened md2blog tab.
(For good measure, a copy of these quick start instructions would be shown when you open md2blog.html.)
I _much_ prefer tools that run in a browser (both for convenience and for sand-boxing), but... I think a command line tool is better for a simple file system-based case like this, at least beyond an initial first impression.
My workflow is that I write my posts in VS Code, and then if I want to preview or upload, I just hop over to the console and type a command (no mouse needed). Deno's built-in sand boxing is the most convenient command line alternative to browser-based apps that I'm aware of.
Edit to add: I have toyed with the idea of integrating VS Code's Monaco editor into a "dev blog in your browser" type of app, but (the last time I checked) durable storage for web app data wasn't reliable (it was more intended to be a cache). Maybe things have changed.
There's the interactive use case while editing markdown where a UI is very nice, but there's also the use case of putting static site generation into an automated build and deployment process. Command line tools that respect standard command line conventions (exit nonzero meaning error, etc) offer an obvious pathway to automation. Often running a static site generator is but one of many steps in a repetitive process, and one part of usability is how easy it is to call the tool from a bash script or use it inside a rule in a makefile.
I can see you're offering self-contained prebuilt single-file binary releases. From my perspective those are a fine way to address the user request of "I want it to be easy to install without needing to first install and configure n other tools". That's one thing that I reckon hugo got right.
Out of curiosity I downloaded a linux binary md2blog release, and apart from needing to unzip and `chmod +x` it, it ran fine without dependencies -- i don't have any tooling related to deno or typescript installed locally.
Are you using `deno compile` [1] to build these self-contained release binaries?
[1]
https://deno.land/manual/tools/compiler
Yes, md2blog's pre-built binaries are created using "deno compile".
> I think a command line tool is better
Why not both? It doesn't need to be mutually exclusive; write md2blog.html so it can run either from the command-line or be opened in the browserâwhichever is preferable (easiest) at the time.
I don't understand your comment about durable storage. If you have a directory of Markdown files on your disk, that's already durable storage. I'm just talking about tweaking the development approach so the site generator's business logic can run using the browser process's JS runtime that's almost definitely already in memory. md2blog.html would be written to accept the same directory that the current incarnation reads; use ordinary file APIsâthe input element or drag and drop. "Web app data" (I think you're talking about localStorage?) would only seem to come in after starting to expand the scope of the tool and is a separate matter.
The simple answer to "why not run this in a web page?" is that I built this tool based on my own needs and I never had any need to run a file system-based tool in my browser.
On the other hand, if I wanted to ship something similar _with a built-in editing experience_, then I think running it in the browser would be the way to go. The problem I saw there (last time I checked) was that I couldn't write directories of files to the file system from a web page (and I definitely want to store everything in the file system).
> The problem I saw there (last time I checked) was that I couldn't write directories of files to the file system
You mean to an arbitrary pathâwhy would this be necessary? The only write operation that most static site generators make use of is putting exactly one file tree somewhere after processing the input. The same thing is achieved by the browser's native Save File handling. If it were running in the browser, you'd generate a ZIP containing that file tree.
Saving a single zip file would work, thanks. But it still seems like a cumbersome workflow in this case because youâd have to unzip to view/upload the site.
I do like the idea in other contexts, just not here.
Perhaps your use case is already supported in a different way, by downloading a single self-contained binary md2blog release, and then
> To build and test the site locally (with automatic reloading), run:
> md2blog --clean --serve
> And open a browser to the "localhost" URL that is written to the console. You can kill the server with Ctrl+C.
as described in
https://jaredkrinke.github.io/md2blog/quick-start.html
Your instructions sound like the description for tiddlywiki.
netlify has something similar to what you describe -
Static websites are great! I would love for them to be more popular. But a lot of people are locked out by the technical hurdle. "Just use <SSG> and host on <github/netlify/whatever>" does not work for your aunt, parent or SO.
I've tried and went into a different direction and created a desktop app [1] for creating a basic website. Yes it's electron and yes it currently only uploads to Vercel for hosting. But those are things my dad does not care about. I can send him a pre-configured "project" file, so he does not even have to enter any API keys.
EDIT: I've re-read this and this sounds like I'm ranting on your project. Not my intention, I love the bloat free sites md2blog generates. Keep it up!
[1]:
Always interesting to see what someone else came up with for their static site generator. If I had known about yours, I might have used it instead of writing mine:
https://github.com/dgoffredo/dgoffredo.github.io
Instead of fiddling with options and themes, your focus is strictly on writing and publishing content.
FAQ (e.g. themes, command line options, support)
Just saying.
In the long term I suspect Md2blog will evolve to be little different to Jekyll.
My solution to scope creep was to put the "generic static site generator" part in a separate library (modeled after Metalsmith), so that I can leave md2blog as _featureless_ as possible.
The thing is that this cycle is important, because you can learn it when it's easy to learn and as it evolves. Jekyll has been very frustrating for me to learn because of all the accumulated cruft, even if it solves very real problems. Sometimes you just need to restart to get the new people on board.
This looks great! I actually made a very similar tool called Markblog[1].
We did a lot the same way (even using Deno!), but we did themes a little differently. I used custom CSS-files, but your approach is even simpler.
Not to detract from Md2blog, I just want to add it to the converstaion for anyone interested in these things :) Keep up!
[1]:
https://github.com/olaven/markblog
Thanks for sharing! Is there an example site built with Markblog? I didnât see a link in the readme.
It certainly sounds very similar!
Edit: Found this link on the Markblog docs:
Edit again: I like that you appear to have an automated approach to deploying to GitHub Pages.
What do you think about Hugo [1]? It supports markdown.
Also thinking about hosting a static blog and don't know what ssg from md to choose.
[1]
I like that Hugo ships in a single binary and has a security model around themes.
But I found Hugoâs template language to have the most unusual/unintuitive template language of any SSG I tried.
In the end, it comes down to personal preference:
Are you going to build your own templates or use a canned theme? If DIY, make sure you like the template language, otherwise make sure you can find a theme you like. This ruled out Hugo for me because I didnât like the template language.
Do you think youâll need to write code to perfect your workflow? If so, use one in a language youâre familiar with. Otherwise, just make sure you can tolerate the install/setup process. This ruled out Jekyll/Pelican for me.
If youâre using an SSG with a plug-in architecture, whatâs the security model and are you comfortable with it? Security concerns around huge dependency trees pushed me away from Metalsmith.
Thanks!
Perhaps out of scope for your use case, but whatâs the status of SEO support? Using frontmatter to generate basic meta tags, twitter/open graph for pretty links, etc.
Might be a useful FAQ entry.
md2blog automatically adds the following meta tags: description, keywords.
The "keywords" tag includes both the post's category (derived from the parent directory name), as well as any keywords specified in YAML front matter.
I don't use Twitter/Facebook, so I wasn't aware of Open Graph. That might be worth looking into. I'm familiar with the concept, but didn't realize there was a standard.
Horrible though it is, you _need_ to include all the Opengraph tags for Facebook and Twitter, as a) thats how the preview cards are built when sharing over social media, and b) google uses them as good SEO markers.
Google have also said in the past, they don't use the 'keywords' meta tag for SEO anymore, due the abuse it gets.
Love the style and configs! Feature suggestion that I _think_ fits the minimalist style.
Support an optional âfooterâ argument in âsite.jsonâ. Useful for copyright, social links, ??
Not having some way to specify copyright, etc. is an oversight on my part. Thanks!
I definitely have spent too long learning and fiddling with SSGâs.
Going to give this a try!
Iâd greatly appreciate it if you let me know how it goes (even if you hate it).
I built it for my own needs, but Iâd like to know if anyone else finds it useful. Thanks!
So far so good! It matches my desired style and feature set, so Iâm probably the ideal candidate ahah.
Left a GitHub issue with the precompiled binary install. But it might be my fault.
The closest thing to this in terms of out of the box simplicity is probably Material theme for MkDocs [1], which has other features, but no official blog support.
[1]
https://squidfunk.github.io/mkdocs-material/
Do you have plans for Latex by any chance?
I recently wrote a few documents in latex after ignoring it for over a decade. Trying to get a working setup with latex + bibtex + a few custom styles was quite annoying (and i work as a backend developer, so i probably tolerate annoying command line tools more than most people). I can appreciate that people (e.g. researchers) who just want to author a document with some equations in latex but who are not programmers or avid command line users might find the entire experience of getting a tolerable latex workflow set up very challenging. I guess that might be partly why
has a business model! Hide all the package management and command line tooling nonsense behind a simple web interface.
I was very excited to find Thomas Weise had wrangled latex and a Tex Live installation into a docker container:
https://github.com/thomasWeise/docker-texlive-thin
Another useful tool is latexmk, which is already installed inside the docker-texlive-thin container :
https://mg.readthedocs.io/latexmk.html
By containing the madness of latex tooling and package management with docker and some volume mounts, I could have a reasonably sane build process to manufacture PDFs from latex source files.
I don't recommend md2blog add mandatory dependencies on anything related to latex. Another way to think about it might be offering optional latex support through some md2blog plugin mechanism that doesn't know anything about latex. But that path sure won't produce anything resembling a "zero config" static site generator! Might end up with something closer to apache httpd.
Do you mean embedding Latex in a Markdown code block and having that render at build time (perhaps to SVG) that is embedded in (or linked from) HTML?
If so, that might be something I could look into. Version 1 of md2blog actually did almost exactly that for Graphviz diagrams (but I removed that feature because, frankly, I didn't understand the Graphviz license). A quick look indicates that Latex also has its own unique license that is... quite lengthy.
Mathjax has server-side rendering now, which could be used for this purpose.
the layout of the demo blog looks really nice, loads immediately, no bloat
Yes, the bloat (e.g. Facebook/Twitter logos) associated with many themes for other static site generators was one of the aspects that drove me to create md2blog's templates from scratch, by hand.