From a770e93ec9c6c744aa44c7c46336925674557636 Mon Sep 17 00:00:00 2001 From: Shan Carter Date: Wed, 22 Mar 2017 11:00:46 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 566ca3a..b4c237e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,20 @@ # Distill Templates -This is the repository for the distill web framework. If you're interesting in just using the framework to write an article for the [Distill journal](http://distill.pub), visit http://distill.pub/guide/. If you're interested in submitting pull requests or developing on the framework itself, read on. +This is the repository for the distill web framework. If you're interesting in just using the framework to write an article for the [Distill journal](http://distill.pub), visit http://distill.pub/guide/. + +The general process for using this framework is to hotlink the compiled code in your dev environment. + +```html + +``` + +You can also install it as a local dependency through npm or with yarn. + +``` +npm install --D distill-template +``` + +If you're interested in submitting pull requests or developing on the framework itself, read on. ## Development From 56e8de28c4513f640a1cae8ff1fa0da22534c2af Mon Sep 17 00:00:00 2001 From: Shan Carter Date: Wed, 22 Mar 2017 11:01:47 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b4c237e..5b4cd92 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The general process for using this framework is to hotlink the compiled code in ``` -You can also install it as a local dependency through npm or with yarn. +You can also install it as a local dependency through npm or with [yarn](https://yarnpkg.com). ``` npm install --D distill-template From f3578fbf1563c3a8c72a0e6e872c96014b49c7d6 Mon Sep 17 00:00:00 2001 From: Christopher Olah Date: Wed, 22 Mar 2017 16:07:01 -0700 Subject: [PATCH 3/3] fix bibtex field case issue --- components/bibliography.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bibliography.js b/components/bibliography.js index 8e49693..e45c7a1 100644 --- a/components/bibliography.js +++ b/components/bibliography.js @@ -17,7 +17,7 @@ export default function(dom, data) { (full, x, char) => char); val = val.replace(/{\\([a-zA-Z])}/g, (full, char) => char); - e.entryTags[k] = val; + e.entryTags[k.toLowerCase()] = val; } bibliography[e.citationKey] = e.entryTags; bibliography[e.citationKey].type = e.entryType;