Deployed 9872427 to prerelease with MkDocs 1.6.1 and mike 2.1.3

This commit is contained in:
jj-docs[bot] 2025-01-11 01:52:39 +00:00
parent 0dbf5162c1
commit ac24e95f97
3 changed files with 30 additions and 2 deletions

View File

@ -6769,7 +6769,7 @@ Martin von Zweigbergk</p>
<p>The following keywords are defined:</p> <p>The following keywords are defined:</p>
<ul> <ul>
<li><code>name: String</code>: Config name.</li> <li><code>name: String</code>: Config name.</li>
<li><code>value: String</code>: Serialized value in TOML syntax.</li> <li><code>value: ConfigValue</code>: Value to be formatted in TOML syntax.</li>
<li><code>overridden: Boolean</code>: True if the value is shadowed by other.</li> <li><code>overridden: Boolean</code>: True if the value is shadowed by other.</li>
</ul> </ul>
<p>For the syntax, see https://jj-vcs.github.io/jj/latest/templates/</p> <p>For the syntax, see https://jj-vcs.github.io/jj/latest/templates/</p>

File diff suppressed because one or more lines are too long

View File

@ -847,6 +847,15 @@
</span> </span>
</a> </a>
</li>
<li class="md-nav__item">
<a href="#configvalue-type" class="md-nav__link">
<span class="md-ellipsis">
ConfigValue type
</span>
</a>
</li> </li>
<li class="md-nav__item"> <li class="md-nav__item">
@ -1734,6 +1743,15 @@
</span> </span>
</a> </a>
</li>
<li class="md-nav__item">
<a href="#configvalue-type" class="md-nav__link">
<span class="md-ellipsis">
ConfigValue type
</span>
</a>
</li> </li>
<li class="md-nav__item"> <li class="md-nav__item">
@ -2008,6 +2026,7 @@ type</a> are available as keywords. For example,
Insert separator between <strong>non-empty</strong> contents.</li> Insert separator between <strong>non-empty</strong> contents.</li>
<li><code>surround(prefix: Template, suffix: Template, content: Template) -&gt; Template</code>: <li><code>surround(prefix: Template, suffix: Template, content: Template) -&gt; Template</code>:
Surround <strong>non-empty</strong> content with texts such as parentheses.</li> Surround <strong>non-empty</strong> content with texts such as parentheses.</li>
<li><code>config(name: String) -&gt; ConfigValue</code>: Look up configuration value by <code>name</code>.</li>
</ul> </ul>
<h2 id="types">Types<a class="headerlink" href="#types" title="Permanent link">&para;</a></h2> <h2 id="types">Types<a class="headerlink" href="#types" title="Permanent link">&para;</a></h2>
<h3 id="boolean-type">Boolean type<a class="headerlink" href="#boolean-type" title="Permanent link">&para;</a></h3> <h3 id="boolean-type">Boolean type<a class="headerlink" href="#boolean-type" title="Permanent link">&para;</a></h3>
@ -2057,6 +2076,15 @@ type</a> are available as keywords. For example,
<li><code>.short([len: Integer]) -&gt; String</code></li> <li><code>.short([len: Integer]) -&gt; String</code></li>
<li><code>.shortest([min_len: Integer]) -&gt; ShortestIdPrefix</code>: Shortest unique prefix.</li> <li><code>.shortest([min_len: Integer]) -&gt; ShortestIdPrefix</code>: Shortest unique prefix.</li>
</ul> </ul>
<h3 id="configvalue-type">ConfigValue type<a class="headerlink" href="#configvalue-type" title="Permanent link">&para;</a></h3>
<p>This type can be printed in TOML syntax. The following methods are defined.</p>
<ul>
<li><code>.as_boolean() -&gt; Boolean</code>: Extract boolean.</li>
<li><code>.as_integer() -&gt; Integer</code>: Extract integer.</li>
<li><code>.as_string() -&gt; String</code>: Extract string. This does not convert non-string
value (e.g. integer) to string.</li>
<li><code>.as_string_list() -&gt; List&lt;String&gt;</code>: Extract list of strings.</li>
</ul>
<h3 id="cryptographicsignature-type">CryptographicSignature type<a class="headerlink" href="#cryptographicsignature-type" title="Permanent link">&para;</a></h3> <h3 id="cryptographicsignature-type">CryptographicSignature type<a class="headerlink" href="#cryptographicsignature-type" title="Permanent link">&para;</a></h3>
<p>The following methods are defined.</p> <p>The following methods are defined.</p>
<ul> <ul>