summaryrefslogtreecommitdiff
path: root/COPYING
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-15 09:34:01 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-15 10:07:26 -0800
commit013294b384ab6dec0320f4c2ce6aa7a810b1630a (patch)
tree4dca5ec96d70faff8ef2be3a1f3852ad424f6e94 /COPYING
parentc637f8d6d57aa197d57579dc8f87023be635e8ad (diff)
Added normalize-reference.js.
This does a proper unicode case fold instead of just using toUpperCase. It is also faster, partly because we can do one pass for space and case normalization. Modified from the NPM package fold-case; proper credit given in source and COPYING.
Diffstat (limited to 'COPYING')
-rw-r--r--COPYING26
1 files changed, 26 insertions, 0 deletions
diff --git a/COPYING b/COPYING
index 4bd9496..0bb3445 100644
--- a/COPYING
+++ b/COPYING
@@ -108,6 +108,32 @@ DEALINGS IN THE SOFTWARE.
-----
+normalize-reference.js is a slightly modified version of
+https://github.com/dmoscrop/fold-case:
+
+Copyright Mathias Bynens <https://mathiasbynens.be/>
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+-----
+
The polyfill for String.fromCodePoint included in commonmark.js is
Copyright Mathias Bynens <http://mathiasbynens.be/>