Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / min-document / README.md
1 # min-document
2
3 [![build status][1]][2] [![dependency status][3]][4]
4
5 <!-- [![browser support][5]][6] -->
6
7 A minimal DOM implementation
8
9 ## Example
10
11 ```js
12 var document = require("min-document")
13
14 var div = document.createElement("div")
15 div.className = "foo bar"
16
17 var span = document.createElement("span")
18 div.appendChild(span)
19 span.textContent = "Hello!"
20
21 /*  <div class="foo bar">
22         <span>Hello!</span>
23     </div>
24 */
25 var html = String(div)
26 ```
27
28 ## Installation
29
30 `npm install min-document`
31
32 ## Contributors
33
34  - Raynos
35
36 ## MIT Licenced
37
38   [1]: https://secure.travis-ci.org/Raynos/min-document.png
39   [2]: https://travis-ci.org/Raynos/min-document
40   [3]: https://david-dm.org/Raynos/min-document.png
41   [4]: https://david-dm.org/Raynos/min-document
42   [5]: https://ci.testling.com/Raynos/min-document.png
43   [6]: https://ci.testling.com/Raynos/min-document