Skip to content

Commit

Permalink
Deployed 952750a with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelo Gladding committed Dec 8, 2023
1 parent 7ea2fff commit 868d614
Show file tree
Hide file tree
Showing 5 changed files with 143 additions and 80 deletions.
1 change: 1 addition & 0 deletions changelog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,7 @@ <h3 id="new-features">New Features<a class="headerlink" href="#new-features" tit
<li>Add option for exposing DOM for embedded properties (#208)</li>
<li>Add srcset support (#209)</li>
<li>Add language support (#210)</li>
<li>Add option for filtering root class names (#211)</li>
<li>Add option for metaformats support (#213)</li>
</ul>
<h3 id="changes">Changes<a class="headerlink" href="#changes" title="Permanent link">&para;</a></h3>
Expand Down
23 changes: 22 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,15 @@
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#filter_roots" class="md-nav__link">
<span class="md-ellipsis">
filter_roots
</span>
</a>

</li>

</ul>
Expand Down Expand Up @@ -590,6 +599,15 @@
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#filter_roots" class="md-nav__link">
<span class="md-ellipsis">
filter_roots
</span>
</a>

</li>

</ul>
Expand Down Expand Up @@ -725,7 +743,7 @@ <h3 id="parse-an-html-document-from-a-file-or-string">Parse an HTML Document fro
<span class="go"> &#39;rels&#39;: [&#39;webmention&#39;]}},</span>
<span class="go"> &#39;debug&#39;: {&#39;description&#39;: &#39;mf2py - microformats2 parser for python&#39;,</span>
<span class="go"> &#39;source&#39;: &#39;https://github.com/microformats/mf2py&#39;,</span>
<span class="go"> &#39;version&#39;: &#39;1.1.3&#39;,</span>
<span class="go"> &#39;version&#39;: &#39;2.0.0&#39;,</span>
<span class="go"> &#39;markup parser&#39;: &#39;html5lib&#39;}}</span>
</code></pre></div>
<div class="highlight"><pre><span></span><code><span class="gp">&gt;&gt;&gt; </span><span class="n">mf2json</span> <span class="o">=</span> <span class="n">mf2py</span><span class="o">.</span><span class="n">parse</span><span class="p">(</span><span class="n">doc</span><span class="o">=</span><span class="s2">&quot;&lt;a class=h-card href=https://example.com&gt;James&lt;/a&gt;&quot;</span><span class="p">)</span>
Expand All @@ -748,6 +766,9 @@ <h3 id="expose_dom"><code>expose_dom</code><a class="headerlink" href="#expose_d
<h3 id="metaformats"><code>metaformats</code><a class="headerlink" href="#metaformats" title="Permanent link">&para;</a></h3>
<p>Use <code>metaformats=True</code> to include any <a href="https://microformats.org/wiki/metaformats">metaformats</a>
found.</p>
<h3 id="filter_roots"><code>filter_roots</code><a class="headerlink" href="#filter_roots" title="Permanent link">&para;</a></h3>
<p>Use <code>filter_roots=True</code> to filter known conflicting user names (e.g. Tailwind).
Otherwise provide a custom list to filter instead.</p>
<h2 id="advanced-usage">Advanced Usage<a class="headerlink" href="#advanced-usage" title="Permanent link">&para;</a></h2>
<p><code>parse</code> is a convenience function for <code>Parser</code>. More sophisticated behaviors are
available by invoking the parser object directly.</p>
Expand Down
Loading

0 comments on commit 868d614

Please sign in to comment.