Editing the source markdown of a generated static site in the browser
from generated html pages in Chrome using the File System Access API (1361)
from generated html pages in Chrome using the File System Access API (1361)
A partial and a script for quickly fetching open graph data and embedding it in a Jekyll page (355)
GoAccess, a log analysis tool, is a perfect replacement for Google Analytics resulting in more accurate (and private)analytics, particularly for smaller sites. (1042)
An improvement over using `jekyll-pdf` or `wkhtmltopdf` (637)
Github has automatically generated social media images for each repository. Here is how to do the same think for Jekyll posts. (1407)
Simple"frontmatter": { "scope": "markdown", "prefix": "frontmatter", "body": [ "---", "title: ${TM_FILENAME/(.*)\\..+$/$1/}", "desc: '${1}'", "created_at: ${CURRE... (359)
When looking up Jekyll related posts patterns I found a few automated approaches: Use the related_posts that’s built in The docs for related_posts indicate that it shoul... (699)
I must admin I got nerd sniped by this question on Reddit asking how to generate JSON in Jekyll but I’m happy to say that it’s actually relatively simple.Here’re the steps with ... (416)
There's a more complete version of this post. Since I’ve restructured my blog to effectively publish the files that are my notes at the same time I’ve realized that somet... (220)
Including sorting, scheduling, drafts, fixing images and links as well as excluding content. (1243)
A side project in Electron and React for easier editing of front matter in many markdown files (348)
I wanted to have the ability to use short links to external resources. I also wanted to be able to change the targets of the links.I suppose that it would have been possible wit... (440)
There's a more complete version of this post. I use markdown to take notes. Previously, I wanted make a link to that folder and publish only some of those notes using Jek... (1179)
There's a more complete version of this post. I use markdown to take notes. I wanted to publish a part of those notes using Jekyll.The obvious way to do this is to just c... (879)
Updated postI strongly suggest you follow the new way instead: Generating PDF from Jekyll using pandoc An improved way of generating ... (284)
I wanted to be able to get a list of categories from a group of posts. That’s easy enough to do using the map liquid filter:{{posts | map: 'categories'}}The result is an array o... (214)
I wanted to generate an index of metadata from posts in Jekyll. The field that I wanted to index wasn’t compulsory, it was an additional one that I sometimes set, and sometimes ... (249)
This is a static site generated using Jekyll. It’s also hosted on one of my servers rather then on Git(Lab/Hub).I deploy it using a rsync to copy the _site directory to the serv... (566)
A great way to deploy a Jekyll site using just rsync. First, build (jekyll b) the site locally and then rsync the _site folder:rsync -av -e 'ssh -i ~/.ssh/id_passwordless_rsa' -... (171)