Skip to content

Commit

Permalink
Deployed 6088fe8 with MkDocs version: 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisBuilds committed Jun 19, 2024
1 parent 6adae3f commit 20ba728
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions changeblog/changeblog_0.11.0/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2448,7 +2448,7 @@ <h2 id="matrix-effect">Matrix Effect</h2>
</dd>
<dt><code>Only a single streak is active in a column</code></dt>
<dd>
<p>A new steak will not start until the previous streak has completely fallen out of view.</p>
<p>A new streak will not start until the previous streak has completely fallen out of view.</p>
</dd>
<dt><code>Full column streaks are held in place for a random amount of time</code></dt>
<dd>
Expand Down Expand Up @@ -2550,7 +2550,7 @@ <h5 id="terminal">Terminal</h5>
<dt><code>Terminal Dimensions</code></dt>
<dd>
<p>The terminal dimensions are based on your terminal emulator. TTE discovers the dimensions of your terminal emulator by
calling <code>shutil.get_terminal_size()</code>. Should there be an issue that prevents terminal dimension discovery, a fallback
calling <code>shutil.get_terminal_size()</code>. Should there an issue occur that prevents terminal dimension discovery, a fallback
of <code>(80, 24)</code> is used.</p>
</dd>
<dd>
Expand All @@ -2569,7 +2569,7 @@ <h5 id="canvas">Canvas</h5>
</dd>
<dd>
<ul>
<li>Specified exactly via the <code>--canvas-width</code> and <code>--canvas-height</code> arguments (or related TerminalConfig attributes).</li>
<li>Specified exactly via the <code>--canvas-width</code> and <code>--canvas-height</code> options (or related TerminalConfig attributes).</li>
</ul>
</dd>
<dd>
Expand Down Expand Up @@ -2600,9 +2600,9 @@ <h5 id="input-text">Input Text</h5>
<summary>How Input Text is Processed</summary>
<ul>
<li>Whitespace characters to the right of the last non-whitespace character in a given line are stripped.</li>
<li>Empty lines are preserved. Whitespace to the left of a non-whitespace character is preserved.</li>
<li>Tabs are converted to four spaces.</li>
<li>Tab conversion can be specified using the <code>--tab-width</code> option.</li>
<li>Empty lines are preserved. </li>
<li>Whitespace to the left of a non-whitespace character is preserved.</li>
<li>Tabs are converted to four spaces, and the tab width can be specified using the <code>--tab-width</code> option.</li>
</ul>
</details>
<dl>
Expand All @@ -2624,7 +2624,7 @@ <h5 id="input-text">Input Text</h5>
</dd>
<dd>
<ul>
<li>If the <code>--ignore-terminal-dimensions</code> option is passed, wrapping will be occur based on the Canvas size or not at
<li>If the <code>--ignore-terminal-dimensions</code> option is passed, wrapping will occur based on the Canvas size or not at
all (if the Canvas is set to match the text), however the output will exceed the dimensions of the terminal and will be
wrapped by the terminal emulator (resulting in expected effect behavior) unless the output is directed somewhere else.</li>
</ul>
Expand All @@ -2649,7 +2649,7 @@ <h3 id="anchoring">Anchoring</h3>
<hr />
<h4 id="anchoring-the-canvas-andor-input-text">Anchoring the Canvas and/or Input Text</h4>
<p>The Canvas and/or Input Text can be anchored around the respective container using the <code>--anchor-[canavs/text]</code> option. Acceptable values are any of the
Cardinal/Diagonal directions.</p>
Cardinal/Diagonal directions, or centered.</p>
<ul>
<li><code>sw</code> = South West (bottom left corner) (<strong>default</strong>)</li>
<li><code>w</code> = West (centered on left edge)</li>
Expand All @@ -2659,6 +2659,7 @@ <h4 id="anchoring-the-canvas-andor-input-text">Anchoring the Canvas and/or Input
<li><code>e</code> = East (centered on right edge)</li>
<li><code>se</code> = South East (bottom right corner)</li>
<li><code>s</code> = South (centered on bottom edge)</li>
<li><code>c</code> = Center (centered within the Canvas/Terminal)</li>
</ul>
<p>Here is an example of the Canvas anchored to the North East of the terminal, and the text anchored to the center of the
Canvas.</p>
Expand Down

0 comments on commit 20ba728

Please sign in to comment.