Skip to content

Commit

Permalink
Deployed 6c41b1b to prerelease with MkDocs 1.6.0 and mike 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jj-docs[bot] committed Aug 1, 2024
1 parent 3d3b5da commit e12d17b
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
45 changes: 45 additions & 0 deletions prerelease/revsets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,15 @@
</span>
</a>

</li>

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

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -1470,6 +1479,15 @@
</span>
</a>

</li>

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

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -1802,6 +1820,14 @@ <h2 id="functions">Functions<a class="headerlink" href="#functions" title="Perma
given <a href="#string-patterns">string pattern</a>.</p>
</li>
<li>
<p><code>author_date(pattern)</code>: Commits with author dates matching the specified <a href="#date-patterns">date
pattern</a>.</p>
</li>
<li>
<p><code>committer_date(pattern)</code>: Commits with committer dates matching the specified
<a href="#date-patterns">date pattern</a>.</p>
</li>
<li>
<p><code>empty()</code>: Commits modifying no files. This also includes <code>merges()</code> without
user modifications and <code>root()</code>.</p>
</li>
Expand Down Expand Up @@ -1894,6 +1920,25 @@ <h2 id="string-patterns">String patterns<a class="headerlink" href="#string-patt
</ul>
<p>You can append <code>-i</code> after the kind to match case‐insensitively (e.g.
<code>glob-i:"fix*jpeg*"</code>).</p>
<h2 id="date-patterns">Date patterns<a class="headerlink" href="#date-patterns" title="Permanent link">&para;</a></h2>
<p>Functions that perform date matching support the following pattern syntax:</p>
<ul>
<li><code>after:"string"</code>: Matches dates exactly at or after the given date.</li>
<li><code>before:"string"</code>: Matches dates before, but not including, the given date.</li>
</ul>
<p>Date strings can be specified in several forms, including:</p>
<ul>
<li>2024-02-01</li>
<li>2024-02-01T12:00:00</li>
<li>2024-02-01T12:00:00-08:00</li>
<li>2024-02-01 12:00:00</li>
<li>2 days ago</li>
<li>5 minutes ago</li>
<li>yesterday</li>
<li>yesterday 5pm</li>
<li>yesterday 10:30</li>
<li>yesterday 15:30</li>
</ul>
<h2 id="aliases">Aliases<a class="headerlink" href="#aliases" title="Permanent link">&para;</a></h2>
<p>New symbols and functions can be defined in the config file, by using any
combination of the predefined symbols/functions and other aliases.</p>
Expand Down
2 changes: 1 addition & 1 deletion prerelease/search/search_index.json

Large diffs are not rendered by default.

0 comments on commit e12d17b

Please sign in to comment.