<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Site Manual - Series - Technical Manual</title><link>https://manual.toulan.fun/en/series/site-manual/</link><description>Site Manual - Series - Technical Manual</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><lastBuildDate>Thu, 07 Jul 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://manual.toulan.fun/en/series/site-manual/" rel="self" type="application/rss+xml"/><item><title>How to Search Articles on This Site</title><link>https://manual.toulan.fun/en/manual-how-to-search/</link><pubDate>Thu, 07 Jul 2022 00:00:00 +0000</pubDate><author><name>HenryZ</name><uri>https://nodewee.github.io/</uri><email>nodewee@gmail.com</email></author><guid>https://manual.toulan.fun/en/manual-how-to-search/</guid><description><![CDATA[<p>🔍 Search Box Shortcut: <code>Ctrl</code> + <code>K</code></p>
<p>Use Unix-like search command syntax.<br>
For example, to search for articles containing both <code>hello</code> and <code>world</code>: <code>'hello 'world</code></p>
<p>Syntax Details:</p>
<ul>
<li>Space acts as a <strong>logical AND</strong> operator,</li>
<li>Vertical bar (<code>|</code>) acts as a <strong>logical OR</strong> operator.<br>
To search for whitespace (escape whitespace), use double quotes. Example: <code>'&quot;hello world&quot;</code>, to search for articles containing &ldquo;hello world&rdquo;.</li>
</ul>
<table>
  <thead>
      <tr>
          <th>Syntax Example</th>
          <th>Match Type</th>
          <th>Description</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td><code>javascript</code></td>
          <td>Fuzzy match</td>
          <td>Items that fuzzy match <code>javascript</code></td>
      </tr>
      <tr>
          <td><code>=scheme</code></td>
          <td>Exact match</td>
          <td>Items that are exactly <code>scheme</code></td>
      </tr>
      <tr>
          <td><code>'python</code></td>
          <td>Contains</td>
          <td>Items that include <code>python</code></td>
      </tr>
      <tr>
          <td><code>!ruby</code></td>
          <td>Does not contain</td>
          <td>Items that do not include <code>ruby</code></td>
      </tr>
      <tr>
          <td><code>^java</code></td>
          <td>Starts with specified chars</td>
          <td>Content that starts with <code>java</code></td>
      </tr>
      <tr>
          <td><code>!^erlang</code></td>
          <td>Does not start with</td>
          <td>Content that does not start with <code>erlang</code></td>
      </tr>
      <tr>
          <td><code>.js$</code></td>
          <td>Ends with</td>
          <td>Content that ends with <code>.js</code></td>
      </tr>
      <tr>
          <td><code>!.go$</code></td>
          <td>Does not end with</td>
          <td>Content that does not end with <code>.go</code></td>
      </tr>
  </tbody>
</table>
<p><em>Written by HenryZ</em></p>]]></description></item></channel></rss>