Don't bold every sidebar link on the index page

Fixing a bunch of broken links in Tags/Basics
This commit is contained in:
Adam Hollett
2016-03-15 19:36:24 -04:00
committed by Tetsuro
parent ea16fe9b24
commit 4aacf3f9a1
6 changed files with 23 additions and 30 deletions
+10 -10
View File
@@ -9,35 +9,35 @@ Liquid includes many logical and comparison operators.
<table>
<tbody>
<tr>
<td><pre>==</pre></td>
<td><code>==</code></td>
<td>equals</td>
</tr>
<tr>
<td><pre>!=</pre></td>
<td><code>!=</code></td>
<td>does not equal</td>
</tr>
<tr>
<td><pre>&gt;</pre></td>
<td><code>&gt;</code></td>
<td>greater than</td>
</tr>
<tr>
<td><pre>&lt;</pre></td>
<td><code>&lt;</code></td>
<td>less than</td>
</tr>
<tr>
<td><pre>&gt;=</pre></td>
<td><code>&gt;=</code></td>
<td>greater than or equal to</td>
</tr>
<tr>
<td><pre>&lt;=</pre></td>
<td><code>&lt;=</code></td>
<td>less than or equal to</td>
</tr>
<tr>
<td><pre>or</pre></td>
<td><code>or</code></td>
<td>logical or</td>
</tr>
<tr>
<td><pre>and</pre></td>
<td><code>and</code></td>
<td>logical and</td>
</tr>
</tbody>
@@ -65,7 +65,7 @@ You can use multiple operators in a tag:
## contains
`contains` checks for the presence of a substring inside a string.
`contains` checks for the codesence of a substring inside a string.
```liquid
{% raw %}
@@ -75,7 +75,7 @@ You can use multiple operators in a tag:
{% endraw %}
```
`contains` can also check for the presence of a string in an array of strings.
`contains` can also check for the codesence of a string in an array of strings.
```liquid
{% raw %}
+3 -3
View File
@@ -79,7 +79,7 @@ Arrays hold lists of variables of any type.
### Accessing items in arrays
To access all of the items in an array, you can loop through each item in the array using a [for](/tags/#for) or [tablerow](/tags/#tablerow) tag.
To access all of the items in an array, you can loop through each item in the array using an [iteration tag](/tags/iteration/).
```liquid
{% raw %}
@@ -119,11 +119,11 @@ Adam
You cannot initialize arrays using pure Liquid.
You can, however, use the [split](/filters/#split) filter to break a single string into an array of substrings.
You can, however, use the [split](/filters/split) filter to break a single string into an array of substrings.
## EmptyDrop
An EmptyDrop object is returned if you try to access a deleted object (such as a page or post) by its [handle](/basics/#Handles). In the example below, `page_1`, `page_2` and `page_3` are all EmptyDrop objects.
An EmptyDrop object is returned if you try to access a deleted object (such as a page or post) by its handle. In the example below, `page_1`, `page_2` and `page_3` are all EmptyDrop objects.
```liquid
{% raw %}