Skip to content

Commit 0cd65a0

Browse files
committed
fix: baseurl rendering, fixes #102
1 parent c480aa3 commit 0cd65a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_plugins/jekyll-lunr-search-index-generator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def get_documents_to_index(site)
8888
'id' => "#{conf['conference'].to_s.downcase.gsub(/\s+/, '-')}-#{conf['year']}",
8989
'title' => "#{conf['conference']} #{conf['year']}",
9090
'content' => "#{conf['conference']} #{conf['year']}",
91-
'url' => "{{ site.baseurl }}/conference/#{conf['conference'].to_s.downcase.gsub(/\s+/, '-')}-#{conf['year']}",
91+
'url' => "#{site.baseurl}/conference/#{conf['conference'].to_s.downcase.gsub(/\s+/, '-')}-#{conf['year']}",
9292
'date' => format_conference_date(conf['start'], conf['end']),
9393
'place' => conf['place'].to_s,
9494
'subs' => conf['sub'].to_s,

0 commit comments

Comments
 (0)