Write table in HTML in docs

This commit is contained in:
micbou 2018-04-25 12:30:03 +02:00
parent 00874fabb8
commit bd0b053cb9
No known key found for this signature in database
GPG Key ID: C7E8FD1F3BDA1E05
2 changed files with 51 additions and 9 deletions

View File

@ -861,12 +861,45 @@ match uppercase letters in the completion strings (the lowercase letters still
match both). On top of that, a letter with no diacritic marks will match that
letter with or without marks:
| matches | foo | føo | fOo | fØo |
|---------|-----|-----|-----|-----|
| **foo** | ✔️ | ✔️ | ✔️ | ✔️ |
| **føo** | ❌ | ✔️ | ❌ | ✔️ |
| **fOo** | ❌ | ❌ | ✔️ | ✔️ |
| **fØo** | ❌ | ❌ | ❌ | ✔️ |
<table>
<tbody>
<tr>
<th>matches</th>
<th>foo</th>
<th>føo</th>
<th>fOo</th>
<th>fØo</th>
</tr>
<tr>
<th>foo</th>
<td>✔️</td>
<td>✔️</td>
<td>✔️</td>
<td>✔️</td>
</tr>
<tr>
<th>føo</th>
<td></td>
<td>✔️</td>
<td></td>
<td>✔️</td>
</tr>
<tr>
<th>fOo</th>
<td></td>
<td></td>
<td>✔️</td>
<td>✔️</td>
</tr>
<tr>
<th>fØo</th>
<td></td>
<td></td>
<td></td>
<td>✔️</td>
</tr>
</tbody>
</table>
Use the TAB key to accept a completion and continue pressing TAB to cycle
through the completions. Use Shift-TAB to cycle backwards. Note that if you're

View File

@ -1117,9 +1117,18 @@ uppercase letters in the completion strings (the lowercase letters still match
both). On top of that, a letter with no diacritic marks will match that letter
with or without marks:
| matches | foo | føo | fOo | fØo | |---------|-----|-----|-----|-----| |
**foo** | ✔️ | ✔️ | ✔️ | ✔️ | | **føo** | ❌ | ✔️ | ❌ | ✔️ | | **fOo** | ❌ | ❌ |
✔️ | ✔️ | | **fØo** | ❌ | ❌ | ❌ | ✔️ |
---------------------------------------------
| _matches_ | _foo_ | _føo_ | _fOo_ | _fØo_ |
---------------------------------------------
| _foo_ | ✔️ | ✔️ | ✔️ | ✔️ |
---------------------------------------------
| _føo_ | ❌ | ✔️ | ❌ | ✔️ |
---------------------------------------------
| _fOo_ | ❌ | ❌ | ✔️ | ✔️ |
---------------------------------------------
| _fØo_ | ❌ | ❌ | ❌ | ✔️ |
---------------------------------------------
Use the TAB key to accept a completion and continue pressing TAB to cycle
through the completions. Use Shift-TAB to cycle backwards. Note that if you're