LICENSE.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <!doctype html>
  2. <!-- Created with GFM2HTML: https://github.com/rvagg/gfm2html -->
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title></title>
  8. <meta name="description" content="">
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <meta name="created-with" content="https://github.com/rvagg/gfm2html">
  11. <style type="text/css">
  12. /* most of normalize.css */
  13. article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}[hidden],template{display:none;}html{font-family:sans-serif;/*1*/-ms-text-size-adjust:100%;/*2*/-webkit-text-size-adjust:100%;/*2*/}body{margin:0;}a{background:transparent;}a:focus{outline:thindotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em0;}abbr[title]{border-bottom:1pxdotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C""\201D""\2018""\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}table{border-collapse:collapse;border-spacing:0;}
  14. html {
  15. font: 14px 'Helvetica Neue', Helvetica, arial, freesans, clean, sans-serif;
  16. }
  17. .container {
  18. line-height: 1.6;
  19. color: #333;
  20. background: #eee;
  21. border-radius: 3px;
  22. padding: 3px;
  23. width: 790px;
  24. margin: 10px auto;
  25. }
  26. .body-content {
  27. background-color: #fff;
  28. border: 1px solid #CACACA;
  29. padding: 30px;
  30. }
  31. .body-content > *:first-child {
  32. margin-top: 0 !important;
  33. }
  34. a, a:visited {
  35. color: #4183c4;
  36. text-decoration: none;
  37. }
  38. a:hover {
  39. text-decoration: underline;
  40. }
  41. p, blockquote, ul, ol, dl, table, pre {
  42. margin: 15px 0;
  43. }
  44. .markdown-body h1
  45. , .markdown-body h2
  46. , .markdown-body h3
  47. , .markdown-body h4
  48. , .markdown-body h5
  49. , .markdown-body h6 {
  50. margin: 20px 0 10px;
  51. padding: 0;
  52. font-weight: bold;
  53. }
  54. h1 {
  55. font-size: 2.5em;
  56. color: #000;
  57. border-bottom: 1px solid #ddd;
  58. }
  59. h2 {
  60. font-size: 2em;
  61. border-bottom: 1px solid #eee;
  62. color: #000;
  63. }
  64. img {
  65. max-width: 100%;
  66. }
  67. hr {
  68. background: transparent url("/img/hr.png") repeat-x 0 0;
  69. border: 0 none;
  70. color: #ccc;
  71. height: 4px;
  72. padding: 0;
  73. }
  74. table {
  75. border-collapse: collapse;
  76. border-spacing: 0;
  77. }
  78. tr:nth-child(2n) {
  79. background-color: #f8f8f8;
  80. }
  81. .markdown-body tr {
  82. border-top: 1px solid #ccc;
  83. background-color: #fff;
  84. }
  85. td, th {
  86. border: 1px solid #ccc;
  87. padding: 6px 13px;
  88. }
  89. th {
  90. font-weight: bold;
  91. }
  92. blockquote {
  93. border-left: 4px solid #ddd;
  94. padding: 0 15px;
  95. color: #777;
  96. }
  97. blockquote > :last-child, blockquote > :first-child {
  98. margin-bottom: 0px;
  99. }
  100. pre, code {
  101. font-size: 13px;
  102. font-family: 'UbuntuMono', monospace;
  103. white-space: nowrap;
  104. margin: 0 2px;
  105. padding: 0px 5px;
  106. border: 1px solid #eaeaea;
  107. background-color: #f8f8f8;
  108. border-radius: 3px;
  109. }
  110. pre > code {
  111. white-space: pre;
  112. }
  113. pre {
  114. overflow-x: auto;
  115. white-space: pre;
  116. padding: 10px;
  117. line-height: 150%;
  118. background-color: #f8f8f8;
  119. border-color: #ccc;
  120. }
  121. pre code, pre tt {
  122. margin: 0;
  123. padding: 0;
  124. border: 0;
  125. background-color: transparent;
  126. border: none;
  127. }
  128. .highlight .c
  129. , .highlight .cm
  130. , .highlight .cp
  131. , .highlight .c1 {
  132. color:#999988;
  133. font-style:italic;
  134. }
  135. .highlight .err {
  136. color:#a61717;
  137. background-color:#e3d2d2
  138. }
  139. .highlight .o
  140. , .highlight .gs
  141. , .highlight .kc
  142. , .highlight .kd
  143. , .highlight .kn
  144. , .highlight .kp
  145. , .highlight .kr {
  146. font-weight:bold
  147. }
  148. .highlight .cs {
  149. color:#999999;
  150. font-weight:bold;
  151. font-style:italic
  152. }
  153. .highlight .gd {
  154. color:#000000;
  155. background-color:#ffdddd
  156. }
  157. .highlight .gd .x {
  158. color:#000000;
  159. background-color:#ffaaaa
  160. }
  161. .highlight .ge {
  162. font-style:italic
  163. }
  164. .highlight .gr
  165. , .highlight .gt {
  166. color:#aa0000
  167. }
  168. .highlight .gh
  169. , .highlight .bp {
  170. color:#999999
  171. }
  172. .highlight .gi {
  173. color:#000000;
  174. background-color:#ddffdd
  175. }
  176. .highlight .gi .x {
  177. color:#000000;
  178. background-color:#aaffaa
  179. }
  180. .highlight .go {
  181. color:#888888
  182. }
  183. .highlight .gp
  184. , .highlight .nn {
  185. color:#555555
  186. }
  187. .highlight .gu {
  188. color:#800080;
  189. font-weight:bold
  190. }
  191. .highlight .kt {
  192. color:#445588;
  193. font-weight:bold
  194. }
  195. .highlight .m
  196. , .highlight .mf
  197. , .highlight .mh
  198. , .highlight .mi
  199. , .highlight .mo
  200. , .highlight .il {
  201. color:#009999
  202. }
  203. .highlight .s
  204. , .highlight .sb
  205. , .highlight .sc
  206. , .highlight .sd
  207. , .highlight .s2
  208. , .highlight .se
  209. , .highlight .sh
  210. , .highlight .si
  211. , .highlight .sx
  212. , .highlight .s1 {
  213. color:#d14
  214. }
  215. .highlight .n {
  216. color:#333333
  217. }
  218. .highlight .na
  219. , .highlight .no
  220. , .highlight .nv
  221. , .highlight .vc
  222. , .highlight .vg
  223. , .highlight .vi
  224. , .highlight .nb {
  225. color:#0086B3
  226. }
  227. .highlight .nc {
  228. color:#445588;
  229. font-weight:bold
  230. }
  231. .highlight .ni {
  232. color:#800080
  233. }
  234. .highlight .ne
  235. , .highlight .nf {
  236. color:#990000;
  237. font-weight:bold
  238. }
  239. .highlight .nt {
  240. color:#000080
  241. }
  242. .highlight .ow {
  243. font-weight:bold
  244. }
  245. .highlight .w {
  246. color:#bbbbbb
  247. }
  248. .highlight .sr {
  249. color:#009926
  250. }
  251. .highlight .ss {
  252. color:#990073
  253. }
  254. .highlight .gc {
  255. color:#999;
  256. background-color:#EAF2F5
  257. }
  258. @media print {
  259. .container {
  260. background: transparent;
  261. border-radius: 0;
  262. padding: 0;
  263. }
  264. .body-content {
  265. border: none;
  266. }
  267. }
  268. </style>
  269. </head>
  270. <body>
  271. <div class="container">
  272. <div class="body-content"><h1 id="the-mit-license-mit-">The MIT License (MIT)</h1>
  273. <p><strong>Copyright (c) 2016 Rod Vagg (the &quot;Original Author&quot;) and additional contributors</strong></p>
  274. <p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), 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:</p>
  275. <p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
  276. <p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, 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.</p>
  277. </div>
  278. </div>
  279. </body>
  280. </html>