-
Notifications
You must be signed in to change notification settings - Fork 11.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae29053
commit e640914
Showing
10 changed files
with
121 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
"Adams": | ||
"adams": | ||
- firstname: ["Edwin", "E.", "E. P.", "Edwin Plimpton"] | ||
url: https://en.wikipedia.org/wiki/Edwin_Plimpton_Adams | ||
|
||
"Podolsky": | ||
"podolsky": | ||
- firstname: ["Boris", "B.", "B. Y.", "Boris Yakovlevich"] | ||
url: https://en.wikipedia.org/wiki/Boris_Podolsky | ||
|
||
"Rosen": | ||
"rosen": | ||
- firstname: ["Nathan", "N."] | ||
url: https://en.wikipedia.org/wiki/Nathan_Rosen | ||
|
||
"Bach": | ||
"bach": | ||
- firstname: ["Johann Sebastian", "J. S."] | ||
url: https://en.wikipedia.org/wiki/Johann_Sebastian_Bach | ||
|
||
- firstname: ["Carl Philipp Emanuel", "C. P. E."] | ||
url: https://en.wikipedia.org/wiki/Carl_Philipp_Emanuel_Bach | ||
|
||
"Przibram": | ||
"przibram": | ||
- firstname: ["Karl"] | ||
url: https://link.springer.com/article/10.1007/s00016-019-00242-z | ||
|
||
"Schrödinger": | ||
"schrodinger": | ||
- firstname: ["Erwin"] | ||
url: https://en.wikipedia.org/wiki/Erwin_Schr%C3%B6dinger | ||
|
||
"Lorentz": | ||
"lorentz": | ||
- firstname: ["Hendrik Antoon"] | ||
url: https://en.wikipedia.org/wiki/Hendrik_Lorentz | ||
|
||
"Planck": | ||
"planck": | ||
- firstname: ["Max"] | ||
url: https://en.wikipedia.org/wiki/Max_Planck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
<div class="publications">{% bibliography -f {{ site.scholar.bibliography }} --group_by none --query @*[selected=true]* %}</div> | ||
<div class="publications"> | ||
{% bibliography --group_by none --query @*[selected=true]* %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# based on https://distresssignal.org/busting-css-cache-with-jekyll-md5-hash | ||
# https://gist.github.com/BryanSchuetz/2ee8c115096d7dd98f294362f6a667db | ||
module Jekyll | ||
module CleanString | ||
class RemoveAccents | ||
require 'i18n' | ||
I18n.config.available_locales = :en | ||
|
||
attr_accessor :string | ||
|
||
def initialize(string:) | ||
self.string = string | ||
end | ||
|
||
def digest! | ||
remove_accents | ||
end | ||
|
||
private | ||
|
||
def remove_accents | ||
I18n.transliterate(string) | ||
end | ||
end | ||
|
||
def remove_accents(string) | ||
RemoveAccents.new(string: string).digest! | ||
end | ||
end | ||
end | ||
|
||
Liquid::Template.register_filter(Jekyll::CleanString) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters