UNPKG

xml-lite

Version:

maintaining xml in pure javascript (IN BOTH NODE.JS & BROWSERS)

113 lines (110 loc) 5.02 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="Content-Type" name="viewport" content="width=device-width, initial-scale=1"/> <title>JSON data structure spec</title> <link rel="stylesheet" href="https://leungwensen.github.io/zfinder/dist/lib/normalize-4.2.0.min.css"> <link rel="stylesheet" href="https://leungwensen.github.io/zfinder/dist/lib/github-markdown-2.3.0.min.css"> <link rel="stylesheet" href="https://leungwensen.github.io/zfinder/dist/zfinder/markdown-previewer.css"> </head> <body> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" style="width:0;height:0;position:absolute;overflow:hidden;"> <defs> <symbol id="si-zfinder-collapse-left" viewBox="0 0 38 38"> <path d="M38 0H0v38h38V0zM3 35V3h32v32H3zM5 5v28h17V21h-9.667L16 26h-4l-5-7 5-7h4l-3.667 5H22V5H5z"/> </symbol> <symbol id="si-zfinder-expand-right" viewBox="0 0 38 38"> <path d="M0 0h38v38H0V0zm35 35V3H3v32h32zM22 5v28H5V21h9.667L11 26h4l5-7-5-7h-4l3.667 5H5V5h17z"/> </symbol> <symbol id="si-zfinder-fullscreen" viewBox="0 0 28 28"> <path d="M4 18H0v10h10v-4H4v-6zm-4-8h4V4h6V0H0v10zm24 14h-6v4h10V18h-4v6zM18 0v4h6v6h4V0H18z"/> </symbol> <symbol id="si-zfinder-fullscreen-exit" viewBox="0 0 28 28"> <path d="M0 22h6v6h4V18H0v4zM6 6H0v4h10V0H6v6zm12 22h4v-6h6v-4H18v10zm4-22V0h-4v10h10V6h-6z"/> </symbol> </defs> </svg> <nav id="toc"> <div id="toc-body" class="toc-body"></div> </nav> <article id="markdown"> <nav id="markdown-header" class="markdown-header"> <svg class="si" id="toggle-toc" width="24" height="24"> <use xlink:href="#si-zfinder-collapse-left"></use> </svg> <svg class="si float-right" id="toggle-fullscreen-article" width="24" height="24"> <use xlink:href="#si-zfinder-fullscreen"></use> </svg> </nav> <div id="markdown-body" class="markdown-body"><h1>JSON data structure spec</h1> <h2>example</h2> <ul> <li><a href="../spec/fixtures/bookstore.json">bookstore.json</a></li> <li><a href="../spec/fixtures/cd-catalog.json">cd-catalog.json</a></li> <li><a href="../spec/fixtures/large.json">large.json</a></li> <li><a href="../spec/fixtures/menu.json">menu.json</a></li> <li><a href="../spec/fixtures/mmap-content.json">mmap-content.json</a></li> <li><a href="../spec/fixtures/note.json">note.json</a></li> <li><a href="../spec/fixtures/svg.json">svg.json</a></li> </ul> <h2>nodes</h2> <h3>Document</h3> <p>Root node of the whole document.</p> <p>structure:</p> <pre><code class="language-javascript">{ <span class="hljs-attr">type</span>: <span class="hljs-string">'Document'</span>, <span class="hljs-attr">children</span>: [<span class="hljs-comment">/* */</span>], } </code></pre> <h3>ProcessingInstruction</h3> <p>ProcessingInstruction node (like <code>&lt;?xml-stylesheet type=&quot;text/css&quot; href=&quot;./bootstore.css&quot;?&gt;</code>).</p> <p>structure:</p> <pre><code class="language-javascript">{ <span class="hljs-string">"type"</span>: <span class="hljs-string">"ProcessingInstruction"</span>, <span class="hljs-string">"tag"</span>: <span class="hljs-string">"xml-stylesheet"</span>, <span class="hljs-string">"data"</span>: <span class="hljs-string">"type=\"text/css\" href=\"./bootstore.css\""</span> } </code></pre> <h3>Comment</h3> <p>Comment node (like <code>&lt;!-- some comments --&gt;</code>).</p> <p>structure:</p> <pre><code class="language-javascript">{ <span class="hljs-string">"type"</span>: <span class="hljs-string">"Comment"</span>, <span class="hljs-string">"data"</span>: <span class="hljs-string">" some comments "</span> } </code></pre> <h3>Element</h3> <p>Normal Element node (like <code>&lt;book category=&quot;COOKING&quot;&gt;&lt;/book&gt;</code>).</p> <p>structure:</p> <pre><code class="language-javascript">{ <span class="hljs-string">"type"</span>: <span class="hljs-string">"Element"</span>, <span class="hljs-string">"tag"</span>: <span class="hljs-string">"bookstore"</span>, <span class="hljs-string">"children"</span>: [<span class="hljs-comment">/* */</span>] } </code></pre> <h3>TextNode</h3> <p>TextNode (like <code>Everyday Italian</code>).</p> <p>structure:</p> <pre><code class="language-javascript">{ <span class="hljs-string">"type"</span>: <span class="hljs-string">"TextNode"</span>, <span class="hljs-string">"text"</span>: <span class="hljs-string">"Everyday Italian"</span> } </code></pre> <h3>DocumentType</h3> <h3>DocumentFragment</h3> <h3>CDATASection</h3> </div> </article> <div id="loading"> <div class="sk-double-bounce"> <div class="sk-child sk-double-bounce1"></div> <div class="sk-child sk-double-bounce2"></div> </div> </div> <script src="https://leungwensen.github.io/zfinder/dist/lib/jquery-3.1.0.min.js"></script> <script src="https://leungwensen.github.io/zfinder/dist/lib/screenfull-3.0.0.min.js"></script> <script src="https://leungwensen.github.io/zfinder/dist/zfinder/markdown-previewer.js"></script> </body> </html>