Skip to content

Commit

Permalink
Update jobs (from script)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmignault committed Mar 7, 2018
1 parent cbcc5ca commit a970fd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 69 deletions.

This file was deleted.

@@ -1,6 +1,6 @@
---
layout: post
title: ""Preserve This Podcast" Project Coordinator - The Metropolitan New York Library Council (METRO)"
title: "\"Preserve This Podcast\" Project Coordinator - The Metropolitan New York Library Council (METRO)"
date: 2018-03-06
excerpt: "The Project Coordinator is a temporary, 20-hour per week position running from date-of-hire through December 2019. This position is open to both new and experienced project managers and information professionals interested in supporting advances in born-digital audio preservation and community outreach through managing an education and outreach program focused on..."
tag: job
Expand Down
5 changes: 3 additions & 2 deletions _tools/getjobs.rb
Expand Up @@ -20,8 +20,9 @@
datestr = datebits[2] + ' ' + datebits[0].rjust(2, '0')
datestr += ' ' + datebits[1].rjust(2, '0')
frontmatter_datestr = datestr.tr(' ', '-')
fn_title = row[1].upcase
title = row[1].nil? ? "" : row[1]
title_save = title
title.gsub!('"', '\\"')
institution = row[2].nil? ? "" : row[2]
description = row[3].nil? ? "" : row[3]
description.nil? ? "" : description.gsub!('\*', "\n*")
Expand Down Expand Up @@ -76,7 +77,7 @@
#{"### Contact Information###\n\n" + contact_info + "\n" unless contact_info.eql? ""}
HERE

jfname = datestr + ' ' + title_save.upcase + ' ' + institution.upcase
jfname = datestr + ' ' + fn_title + ' ' + institution.upcase
jfname.tr!('/ ().,&\'\"', '-')
jfname.gsub!('--', '-')
jfname += '.markdown'
Expand Down

0 comments on commit a970fd5

Please sign in to comment.