Skip to content

Commit

Permalink
update doc, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jdum committed Dec 24, 2023
1 parent 56ad32a commit 469bcd0
Show file tree
Hide file tree
Showing 15 changed files with 4,626 additions and 2,895 deletions.
18 changes: 9 additions & 9 deletions doc/bookmark.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h1 class="title">Module <code>odfdo.bookmark</code></h1>
_tag = &#34;text:bookmark&#34;
_properties = ((&#34;name&#34;, &#34;text:name&#34;),)

def __init__(self, name=&#34;&#34;, **kwargs):
def __init__(self, name: str = &#34;&#34;, **kwargs):
super().__init__(**kwargs)
if self._do_init:
self.name = name
Expand All @@ -85,7 +85,7 @@ <h1 class="title">Module <code>odfdo.bookmark</code></h1>
_tag = &#34;text:bookmark-start&#34;
_properties = ((&#34;name&#34;, &#34;text:name&#34;),)

def __init__(self, name=&#34;&#34;, **kwargs):
def __init__(self, name: str = &#34;&#34;, **kwargs):
super().__init__(**kwargs)
if self._do_init:
self.name = name
Expand All @@ -106,7 +106,7 @@ <h1 class="title">Module <code>odfdo.bookmark</code></h1>
_tag = &#34;text:bookmark-end&#34;
_properties = ((&#34;name&#34;, &#34;text:name&#34;),)

def __init__(self, name=&#34;&#34;, **kwargs):
def __init__(self, name: str = &#34;&#34;, **kwargs):
super().__init__(**kwargs)
if self._do_init:
self.name = name
Expand All @@ -130,7 +130,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
<dl>
<dt id="odfdo.bookmark.Bookmark"><code class="flex name class">
<span>class <span class="ident">Bookmark</span></span>
<span>(</span><span>name='', **kwargs)</span>
<span>(</span><span>name: str = '', **kwargs)</span>
</code></dt>
<dd>
<div class="desc"><p>Bookmark class for ODF "text:bookmark"</p>
Expand All @@ -152,7 +152,7 @@ <h2 id="arguments">Arguments</h2>
_tag = &#34;text:bookmark&#34;
_properties = ((&#34;name&#34;, &#34;text:name&#34;),)

def __init__(self, name=&#34;&#34;, **kwargs):
def __init__(self, name: str = &#34;&#34;, **kwargs):
super().__init__(**kwargs)
if self._do_init:
self.name = name</code></pre>
Expand Down Expand Up @@ -299,7 +299,7 @@ <h3>Inherited members</h3>
</dd>
<dt id="odfdo.bookmark.BookmarkEnd"><code class="flex name class">
<span>class <span class="ident">BookmarkEnd</span></span>
<span>(</span><span>name='', **kwargs)</span>
<span>(</span><span>name: str = '', **kwargs)</span>
</code></dt>
<dd>
<div class="desc"><p>BookmarkEnd class for ODF "text:bookmark-end"</p>
Expand All @@ -321,7 +321,7 @@ <h2 id="arguments">Arguments</h2>
_tag = &#34;text:bookmark-end&#34;
_properties = ((&#34;name&#34;, &#34;text:name&#34;),)

def __init__(self, name=&#34;&#34;, **kwargs):
def __init__(self, name: str = &#34;&#34;, **kwargs):
super().__init__(**kwargs)
if self._do_init:
self.name = name</code></pre>
Expand Down Expand Up @@ -468,7 +468,7 @@ <h3>Inherited members</h3>
</dd>
<dt id="odfdo.bookmark.BookmarkStart"><code class="flex name class">
<span>class <span class="ident">BookmarkStart</span></span>
<span>(</span><span>name='', **kwargs)</span>
<span>(</span><span>name: str = '', **kwargs)</span>
</code></dt>
<dd>
<div class="desc"><p>BookmarkStart class for ODF "text:bookmark-start"</p>
Expand All @@ -490,7 +490,7 @@ <h2 id="arguments">Arguments</h2>
_tag = &#34;text:bookmark-start&#34;
_properties = ((&#34;name&#34;, &#34;text:name&#34;),)

def __init__(self, name=&#34;&#34;, **kwargs):
def __init__(self, name: str = &#34;&#34;, **kwargs):
super().__init__(**kwargs)
if self._do_init:
self.name = name</code></pre>
Expand Down
Loading

0 comments on commit 469bcd0

Please sign in to comment.