Skip to content

Commit

Permalink
lint and rebuild docs
Browse files Browse the repository at this point in the history
  • Loading branch information
byteface committed Sep 11, 2021
1 parent 92df0da commit f3bf3c5
Show file tree
Hide file tree
Showing 65 changed files with 663 additions and 578 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ print(test)

### rendering

you can just cast str() on any element to render it.
you can cast str() on any element to render it.

```python
el_string = str(div())
Expand Down Expand Up @@ -119,6 +119,8 @@ str(t)

### DOM

DOM manipulation with python.

#### createElement
to create your own elements use the DOM API

Expand Down
Binary file modified docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/CDN.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/autodocs.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/dQuery.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/dom.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/html.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/javascript.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/packages/utils.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 47963c9c2481bc05a853212f99888cbf
config: 368cc0a970c027e28be52946b30699ae
tags: 645f666f9bcd5a90fca523b33c5a78b7
13 changes: 11 additions & 2 deletions docs/_build/html/_modules/domonic/CDN.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>domonic.CDN &#8212; domonic 0.4.5 documentation</title>
<title>domonic.CDN &#8212; domonic 0.5.1 documentation</title>
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../../_static/alabaster.css" />
<script data-url_root="../../" id="documentation_options" src="../../_static/documentation_options.js"></script>
Expand Down Expand Up @@ -111,6 +111,7 @@ <h1>Source code for domonic.CDN</h1><div class="highlight"><pre>
<span class="n">AFRAME_1_2</span> <span class="o">=</span> <span class="s2">&quot;https://aframe.io/releases/1.2.0/aframe.min.js&quot;</span>
<span class="n">BRYTHON_3_9_5</span> <span class="o">=</span> <span class="s2">&quot;https://cdnjs.cloudflare.com/ajax/libs/brython/3.9.5/brython.min.js&quot;</span>
<span class="n">MATHML</span> <span class="o">=</span> <span class="s2">&quot;https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=MML_HTMLorMML&quot;</span> <span class="c1"># polyfill mathml</span></div>

<span class="c1"># def find_on_cdn():</span>
<span class="c1"># https://cdn.jsdelivr.net/npm/</span>
<span class="c1"># https://cdnjs.cloudflare.com/ajax/libs/</span>
Expand All @@ -132,7 +133,9 @@ <h1>Source code for domonic.CDN</h1><div class="highlight"><pre>
<span class="n">MILLIGRAM_1_3_0</span> <span class="o">=</span> <span class="s2">&quot;https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.css&quot;</span>
<span class="n">X3DOM</span> <span class="o">=</span> <span class="s2">&quot;https://www.x3dom.org/download/x3dom.css&quot;</span>
<span class="n">FONTAWESOME_5_7_1</span> <span class="o">=</span> <span class="s2">&quot;https://use.fontawesome.com/releases/v5.7.1/css/all.css&quot;</span>
<span class="n">MDI_5_4_55</span> <span class="o">=</span> <span class="s2">&quot;https://cdn.materialdesignicons.com/5.4.55/css/materialdesignicons.min.css&quot;</span> <span class="c1"># icons</span></div>
<span class="n">MDI_5_4_55</span> <span class="o">=</span> <span class="s2">&quot;https://cdn.materialdesignicons.com/5.4.55/css/materialdesignicons.min.css&quot;</span> <span class="c1"># icons</span>
<span class="n">TAILWIND_2_2_15</span> <span class="o">=</span> <span class="s2">&quot;https://unpkg.com/tailwindcss@^2.2.15/dist/tailwind.min.css&quot;</span></div>

<span class="c1"># find_on_cdn():</span>
<span class="c1"># https://unpkg.com/</span>
<span class="c1"># https://cdnjs.cloudflare.com/ajax/libs/</span>
Expand All @@ -141,9 +144,14 @@ <h1>Source code for domonic.CDN</h1><div class="highlight"><pre>


<span class="k">class</span> <span class="nc">CDN_FONT</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>

<span class="nd">@staticmethod</span>
<span class="k">def</span> <span class="nf">google</span><span class="p">(</span><span class="n">family</span><span class="p">):</span>
<span class="k">return</span> <span class="s2">&quot;http://fonts.googleapis.com/css?family=&quot;</span> <span class="o">+</span> <span class="s1">&#39;+&#39;</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">family</span><span class="p">)</span>

<span class="c1"># @staticmethod</span>
<span class="c1"># def font_awesome(version=&#39;5.7.1&#39;):</span>
<span class="c1"># return f&quot;https://use.fontawesome.com/releases/v{version}/css/all.css&quot;</span>
</pre></div>

</div>
Expand Down Expand Up @@ -185,6 +193,7 @@ <h3>Navigation</h3>
<li class="toctree-l1"><a class="reference internal" href="../../packages/CDN.html">Domonic: CDN</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../packages/decorators.html">Domonic: decorators</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../packages/components.html">Domonic: templates and components</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../packages/utils.html">Domonic: utils</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../packages/servers.html">Domonic: servers</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../packages/autodocs.html">Domonic: autodocs</a></li>
</ul>
Expand Down
Loading

0 comments on commit f3bf3c5

Please sign in to comment.