Skip to content

Commit

Permalink
Fix Regexes
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperDramsch committed Mar 17, 2024
1 parent 80381c9 commit dd31356
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,30 +54,30 @@ page_gen:
- data: 'conferences'
template: 'conference'
dir: 'conference'
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\w]+/, '-')+"-"+record['year'].to_s
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\p{L}]+/, '-')+"-"+record['year'].to_s
title_expr: record['conference']+" "+record['year'].to_s+" Conference Deadlines"
- data: 'archive'
template: 'conference'
dir: 'conference'
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\w]+/, '-')+"-"+record['year'].to_s
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\p{L}]+/, '-')+"-"+record['year'].to_s
title_expr: record['conference']+" "+record['year'].to_s+" Conference Deadlines"
- data: 'legacy'
template: 'conference'
dir: 'conference'
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\w]+/, '-')+"-"+record['year'].to_s
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\p{L}]+/, '-')+"-"+record['year'].to_s
title_expr: record['conference']+" "+record['year'].to_s+" Conference Deadlines"
- data: 'legacy'
template: 'summary'
dir: 'series'
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\w]+/, '-')
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\p{L}]+/, '-')
title_expr: record['conference']+" "+"Conference Summary"
- data: 'archive'
template: 'summary'
dir: 'series'
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\w]+/, '-')
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\p{L}]+/, '-')
title_expr: record['conference']+" "+"Conference Summary"
- data: 'conferences'
template: 'summary'
dir: 'series'
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\w]+/, '-')
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\p{L}]+/, '-')
title_expr: record['conference']+" "+"Conference Summary"
2 changes: 1 addition & 1 deletion _layouts/conference.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ <h3 id="conf-subtitle">a.k.a. {{page.alt_name}} {{page.year}}</h3>
data-action="share/whatsapp/share" data-toggle="tooltip" title="Text on Whatsapp!">
Text Conference on WhatsApp
</a> |
<a href="mailto:?subject=Do%20you%want%20to%20speak%20at%20{{ page.conference }}%20{{page.year}}!&body=Hey!%20the%20CfP%20deadline%20for%20{{ page.conference }}%20{{page.year}}%20is%20approaching!%20%20{{site.url}}{{page.url}}"
<a href="mailto:?subject=Do%20you%20want%20to%20speak%20at%20{{ page.conference }}%20{{page.year}}&body=Hey,%20the%20CfP%20deadline%20for%20{{ page.conference }}%20{{page.year}}%20is%20approaching!%20%20{{site.url}}{{page.url}}"
data-toggle="tooltip" title="Email to a Friend!">
Mail Conference
</a>
Expand Down

0 comments on commit dd31356

Please sign in to comment.