Skip to content

Instantly share code, notes, and snippets.

@inukshuk
Created January 21, 2015 11:59
Show Gist options
  • Save inukshuk/51e4a2b527eb605845fa to your computer and use it in GitHub Desktop.
Save inukshuk/51e4a2b527eb605845fa to your computer and use it in GitHub Desktop.
Jekyll-Scholar: Highlight Author
gems:
- 'jekyll/scholar'
scholar:
bibliography_template: "{{ reference | replace_first: 'Zelle, R. M.', '<b>Zelle, R. M.</b>' }}"


Bibliography

{% bibliography %}

@article{zelle2010a,
author = {R.M. Zelle and de Hulster, E. and Kloezen, W. and Pronk, J.T. and van Maris, A.J.A.},
date = {2010},
title = {Key process conditions for production of C4-dicarboxylic acids in bioreactor batch cultures of an engineered Saccharomyces cerevisiae strain},
journal = {Appl. Environ. Microbiol},
volume = {76},
pages = {744–750}
}
@article{d2009a,
author = {D.A. Abbott and R.M. Zelle and Pronk, J.T. and van Maris, A.J.A.},
date = {2009},
title = {Metabolic engineering of Saccharomyces cerevisiae for production of carboxylic acids: current status and challenges},
journal = {FEMS Yeast Res},
volume = {9},
pages = {1123–1136}
}
@article{zelle2008a,
author = {R.M. Zelle and de Hulster, van Winden, W.A. and de Waard, P. and Dijkema, C. and Winkler, E.E. and Geertman, J.A. and van Dijken, J.P. and Pronk, J.T. and van Maris, A.J.A.},
date = {2008},
title = {Malic acid production by Saccharomyces cerevisiae: engineering of pyruvate carboxylation, oxaloacetate reduction, and malate export},
journal = {Appl. Environ. Microbiol},
volume = {74},
pages = {2766–2777}
}
@inukshuk
Copy link
Author

$ gem list jekyll-scholar

*** LOCAL GEMS ***

jekyll-scholar (4.3.1)

$ tree .
.
├── _bibliography
│   └── references.bib
├── _config.yml
└── index.md

1 directory, 3 files
$ jekyll build
Configuration file: /home/sylvester/tmp/_config.yml
            Source: /home/sylvester/tmp
       Destination: /home/sylvester/tmp/_site
      Generating... 
                    done.
 Auto-regeneration: disabled. Use --watch to enable.
$ cat _site/index.html
<h1 id="bibliography">Bibliography</h1>
  <ol class="bibliography">
  <li><span id="zelle2010a"><b>Zelle, R. M.</b>, de Hulster, E., Kloezen, W., Pronk, J. T., &amp; van Maris, A. J. A. (2010). Key process conditions for production of C4-dicarboxylic acids in bioreactor batch cultures of an engineered Saccharomyces cerevisiae strain. <i>Appl. Environ. Microbiol</i>, <i>76</i>, 744–750.</span></li>
  <li><span id="d2009a">Abbott, D. A., <b>Zelle, R. M.</b>, Pronk, J. T., &amp; van Maris, A. J. A. (2009). Metabolic engineering of Saccharomyces cerevisiae for production of carboxylic acids: current status and challenges. <i>FEMS Yeast Res</i>, <i>9</i>, 1123–1136.</span></li>
  <li><span id="zelle2008a"><b>Zelle, R. M.</b>, de Hulster, W. A., van Winden, de Waard, P., Dijkema, C., Winkler, E. E., Geertman, J. A., … van Maris, A. J. A. (2008). Malic acid production by Saccharomyces cerevisiae: engineering of pyruvate carboxylation, oxaloacetate reduction, and malate export. <i>Appl. Environ. Microbiol</i>, <i>74</i>, 2766–2777.</span></li>
</ol>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment