about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--content/post/a-new-site.md12
-rw-r--r--content/post/back-again.md12
-rw-r--r--content/post/cedit-and-paredit.md14
-rw-r--r--content/post/emacs-package-archive-statistics.md14
-rw-r--r--content/post/git-cloning-similar-repositories.md16
-rw-r--r--content/post/opening-projects-with-projectile.md14
-rw-r--r--content/post/repository-management-with-ghq.md10
-rw-r--r--content/post/self-hosted-git.md12
8 files changed, 52 insertions, 52 deletions
diff --git a/content/post/a-new-site.md b/content/post/a-new-site.md
index ffaa3ff..5b32519 100644
--- a/content/post/a-new-site.md
+++ b/content/post/a-new-site.md
@@ -1,9 +1,9 @@
-+++
-Categories = ["Geek"]
-Description = "I made a website."
-title = "A New Site"
-date = 2014-06-07T20:16:16Z
-+++
+---
+Categories: ["Geek"]
+Description: "I made a website."
+title: "A New Site"
+date: 2014-06-07T20:16:16Z
+---
 
 I finally got around to making a website.  I decided to use [Hugo][] with a slightly-modified [Hyde theme][]
 
diff --git a/content/post/back-again.md b/content/post/back-again.md
index 7107a56..0f7adc7 100644
--- a/content/post/back-again.md
+++ b/content/post/back-again.md
@@ -1,9 +1,9 @@
-+++
-Description = "I'm back"
-Tags = ["website"]
-date = "2017-05-06T16:55:57+02:00"
-title = "Back again"
-+++
+---
+Description: "I'm back"
+Tags: ["website"]
+date: "2017-05-06T16:55:57+02:00"
+title: "Back again"
+---
 
 I've not made any posts for quite some time.  My life has changed
 quite a bit, I've emigrated from the UK and it's only now that I'm
diff --git a/content/post/cedit-and-paredit.md b/content/post/cedit-and-paredit.md
index 23fb1c4..f35b362 100644
--- a/content/post/cedit-and-paredit.md
+++ b/content/post/cedit-and-paredit.md
@@ -1,10 +1,10 @@
-+++
-Categories = ["Emacs"]
-Description = "Cedit and paredit for structural editing"
-Tags = ["development", "emacs"]
-title = "Cedit and Paredit"
-date = 2014-08-04T07:10:14Z
-+++
+---
+Categories: ["Emacs"]
+Description: "Cedit and paredit for structural editing"
+Tags: ["development", "emacs"]
+title: "Cedit and Paredit"
+date: 2014-08-04T07:10:14Z
+---
 
 I recently discovered [cedit][], which provides some structural
 commands for editing c-like languages.  (See this
diff --git a/content/post/emacs-package-archive-statistics.md b/content/post/emacs-package-archive-statistics.md
index 2275c9a..5fda12d 100644
--- a/content/post/emacs-package-archive-statistics.md
+++ b/content/post/emacs-package-archive-statistics.md
@@ -1,10 +1,10 @@
-+++
-Categories = ["Emacs"]
-Description = "Working out which package archives I'm using"
-Tags = ["emacs"]
-title = "Emacs Package Archive Statistics"
-date = 2014-07-19T13:19:54Z
-+++
+---
+Categories: ["Emacs"]
+Description: "Working out which package archives I'm using"
+Tags: ["emacs"]
+title: "Emacs Package Archive Statistics"
+date: 2014-07-19T13:19:54Z
+---
 
 I use [cask][] for managing the dependencies of my Emacs
 configuration.  Whenever I opened my `Cask` file, I wondered if I
diff --git a/content/post/git-cloning-similar-repositories.md b/content/post/git-cloning-similar-repositories.md
index 96ea7b4..517ff4d 100644
--- a/content/post/git-cloning-similar-repositories.md
+++ b/content/post/git-cloning-similar-repositories.md
@@ -1,10 +1,10 @@
-+++
-Categories = ["Development"]
-Description = "Speed up cloning of similar git repositories"
-Tags = ["git"]
-title = "Cloning Similar Git Repositories"
-date = 2014-06-22T08:35:24Z
-+++
+---
+Categories: ["Development"]
+Description: "Speed up cloning of similar git repositories"
+Tags: ["git"]
+title: "Cloning Similar Git Repositories"
+date: 2014-06-22T08:35:24Z
+---
 With multiple similar git repositories, for example where a base repository contains a framework or base system installation and other repositories are created from that repository, it's possible to save some time when cloning down another repository by using the `reference` option to [git-clone][]:
 
 	git clone git@github.com/my/repo --reference another-repo
@@ -16,4 +16,4 @@ On a related note, I'm surprised that [GitHub][] doesn't allow for multiple rena
 
 [git-clone]:https://www.kernel.org/pub/software/scm/git/docs/git-clone.html
 [GitHub]:https://github.com
-[BitBucket]:https://bitbucket.org/
\ No newline at end of file
+[BitBucket]:https://bitbucket.org/
diff --git a/content/post/opening-projects-with-projectile.md b/content/post/opening-projects-with-projectile.md
index d88d309..8c6d2bc 100644
--- a/content/post/opening-projects-with-projectile.md
+++ b/content/post/opening-projects-with-projectile.md
@@ -1,10 +1,10 @@
-+++
-Categories = ["Emacs"]
-Description = ""
-Tags = ["emacs", "lisp"]
-title = "Opening Projects with Projectile"
-date = 2014-07-12T09:12:34Z
-+++
+---
+Categories: ["Emacs"]
+Description: ""
+Tags: ["emacs", "lisp"]
+title: "Opening Projects with Projectile"
+date: 2014-07-12T09:12:34Z
+---
 
 I use [Projectile][] for working with projects in Emacs.  It's really good at finding files in projects, working with source code indexes (I use [Global][]), and with its [perspective][] support, it's also great at separating projects into workspaces.  However, I've always felt it lacking in actually opening projects.  I tend to work on different projects all the time and `projectile-switch-project` only tracks projects once they've been opened initially (despite the name, it works across Emacs sessions).
 
diff --git a/content/post/repository-management-with-ghq.md b/content/post/repository-management-with-ghq.md
index d831c9e..656da0b 100644
--- a/content/post/repository-management-with-ghq.md
+++ b/content/post/repository-management-with-ghq.md
@@ -1,8 +1,8 @@
-+++
-Tags = ["development","git"]
-date = "2017-05-06T23:31:51+02:00"
-title = "Repository management with ghq"
-+++
+---
+Tags: ["development","git"]
+date: "2017-05-06T23:31:51+02:00"
+title: "Repository management with ghq"
+---
 
 I recently encountered [ghq][], a tool for automatically organising VCS-backed
 projects automatically.  Give it a repository URL, it will clone a project to
diff --git a/content/post/self-hosted-git.md b/content/post/self-hosted-git.md
index b26f61b..19428ce 100644
--- a/content/post/self-hosted-git.md
+++ b/content/post/self-hosted-git.md
@@ -1,9 +1,9 @@
-+++
-Description = "I describe my git server setup (using cgit and gitolite), and what it allows"
-Tags = ["development","git"]
-date = "2017-06-04T12:33:02+02:00"
-title = "A simple, powerful self-hosted git setup"
-+++
+---
+Description: "I describe my git server setup (using cgit and gitolite), and what it allows"
+Tags: ["development","git"]
+date: "2017-06-04T12:33:02+02:00"
+title: "A simple, powerful self-hosted git setup"
+---
 
 I had been using [gogs][] for about a year.  It worked reasonably
 well, as it focuses on being a lightweight self-hosted GitHub