From 852304f6bc479a8279eebb3f011c2b15ec946d89 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 14 Apr 2024 15:33:19 -0600 Subject: Include my middle initial --- util.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'util.rb') diff --git a/util.rb b/util.rb index 5250083..0611d27 100644 --- a/util.rb +++ b/util.rb @@ -8,10 +8,10 @@ $license_urls = { 'WTFPL-2' => "http://www.wtfpl.net/txt/copying/", } $person_uris = { - "Luke Shumaker" => "https://lukeshu.com/", + "Luke T. Shumaker" => "https://lukeshu.com/", } $person_emails = { - "Luke Shumaker" => "lukeshu@lukeshu.com", + "Luke T. Shumaker" => "lukeshu@lukeshu.com", } class Person @@ -78,7 +78,7 @@ class Page end def title ; @title ||= pandoc['title'] || input.split("\n",2).first ; end - def author ; @author ||= Person.new( pandoc['author'] || "Luke Shumaker") ; end + def author ; @author ||= Person.new( pandoc['author'] || "Luke T. Shumaker") ; end def license ; @license ||= License.new(pandoc['license'] || "CC BY-SA-3.0") ; end def date ; @date ||= Date.parse(pandoc['date']) unless pandoc['date'].nil? ; end def slug ; @slug ||= infile.sub(/\..*$/,'').sub(/^.*\//,'') ; end @@ -90,7 +90,7 @@ class Page end def breadcrumbs - @breadcrumbs ||= 'Luke Shumaker » ' + ( (slug == 'index') ? "blog" : "blog » #{slug}" ) + @breadcrumbs ||= 'Luke T. Shumaker » ' + ( (slug == 'index') ? "blog" : "blog » #{slug}" ) end end -- cgit v1.2.3