LICENSE 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. The MIT License (MIT)
  2. Copyright (c) 2016 Rob Phillips.
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  17. THE SOFTWARE.
  18. -----
  19. cmark
  20. Copyright (c) 2014, John MacFarlane
  21. All rights reserved.
  22. Redistribution and use in source and binary forms, with or without
  23. modification, are permitted provided that the following conditions are met:
  24. * Redistributions of source code must retain the above copyright
  25. notice, this list of conditions and the following disclaimer.
  26. * Redistributions in binary form must reproduce the above
  27. copyright notice, this list of conditions and the following
  28. disclaimer in the documentation and/or other materials provided
  29. with the distribution.
  30. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  33. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  35. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  36. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  37. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  38. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  39. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  40. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  41. -----
  42. houdini.h, houdini_href_e.c, houdini_html_e.c, houdini_html_u.c,
  43. html_unescape.gperf, html_unescape.h
  44. derive from https://github.com/vmg/houdini (with some modifications)
  45. Copyright (C) 2012 Vicent Martí
  46. Permission is hereby granted, free of charge, to any person obtaining a copy of
  47. this software and associated documentation files (the "Software"), to deal in
  48. the Software without restriction, including without limitation the rights to
  49. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  50. of the Software, and to permit persons to whom the Software is furnished to do
  51. so, subject to the following conditions:
  52. The above copyright notice and this permission notice shall be included in all
  53. copies or substantial portions of the Software.
  54. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  55. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  56. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  57. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  58. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  59. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  60. SOFTWARE.
  61. -----
  62. buffer.h, buffer.c, chunk.h
  63. are derived from code (C) 2012 Github, Inc.
  64. Permission is hereby granted, free of charge, to any person obtaining a copy of
  65. this software and associated documentation files (the "Software"), to deal in
  66. the Software without restriction, including without limitation the rights to
  67. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  68. of the Software, and to permit persons to whom the Software is furnished to do
  69. so, subject to the following conditions:
  70. The above copyright notice and this permission notice shall be included in all
  71. copies or substantial portions of the Software.
  72. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  73. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  74. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  75. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  76. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  77. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  78. SOFTWARE.
  79. -----
  80. utf8.c and utf8.c
  81. are derived from utf8proc
  82. (<http://www.public-software-group.org/utf8proc>),
  83. (C) 2009 Public Software Group e. V., Berlin, Germany.
  84. Permission is hereby granted, free of charge, to any person obtaining a
  85. copy of this software and associated documentation files (the "Software"),
  86. to deal in the Software without restriction, including without limitation
  87. the rights to use, copy, modify, merge, publish, distribute, sublicense,
  88. and/or sell copies of the Software, and to permit persons to whom the
  89. Software is furnished to do so, subject to the following conditions:
  90. The above copyright notice and this permission notice shall be included in
  91. all copies or substantial portions of the Software.
  92. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  93. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  94. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  95. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  96. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  97. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  98. DEALINGS IN THE SOFTWARE.
  99. -----
  100. The normalization code in runtests.py was derived from the
  101. markdowntest project, Copyright 2013 Karl Dubost:
  102. The MIT License (MIT)
  103. Copyright (c) 2013 Karl Dubost
  104. Permission is hereby granted, free of charge, to any person obtaining
  105. a copy of this software and associated documentation files (the
  106. "Software"), to deal in the Software without restriction, including
  107. without limitation the rights to use, copy, modify, merge, publish,
  108. distribute, sublicense, and/or sell copies of the Software, and to
  109. permit persons to whom the Software is furnished to do so, subject to
  110. the following conditions:
  111. The above copyright notice and this permission notice shall be
  112. included in all copies or substantial portions of the Software.
  113. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  114. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  115. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  116. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  117. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  118. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  119. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  120. -----
  121. The CommonMark spec (test/spec.txt) is
  122. Copyright (C) 2014-15 John MacFarlane
  123. Released under the Creative Commons CC-BY-SA 4.0 license:
  124. <http://creativecommons.org/licenses/by-sa/4.0/>.
  125. -----
  126. The test software in test/ is
  127. Copyright (c) 2014, John MacFarlane
  128. All rights reserved.
  129. Redistribution and use in source and binary forms, with or without
  130. modification, are permitted provided that the following conditions are met:
  131. * Redistributions of source code must retain the above copyright
  132. notice, this list of conditions and the following disclaimer.
  133. * Redistributions in binary form must reproduce the above
  134. copyright notice, this list of conditions and the following
  135. disclaimer in the documentation and/or other materials provided
  136. with the distribution.
  137. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  138. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  139. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  140. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  141. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  142. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  143. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  144. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  145. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  146. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  147. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  148. -----
  149. The normalization code in runtests.py was derived from the
  150. markdowntest project, Copyright 2013 Karl Dubost:
  151. The MIT License (MIT)
  152. Copyright (c) 2013 Karl Dubost
  153. 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:
  154. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  155. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  156. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  157. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  158. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  159. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  160. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  161. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.