Write table in HTML in docs
This commit is contained in:
parent
00874fabb8
commit
bd0b053cb9
45
README.md
45
README.md
@ -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
|
match both). On top of that, a letter with no diacritic marks will match that
|
||||||
letter with or without marks:
|
letter with or without marks:
|
||||||
|
|
||||||
| matches | foo | føo | fOo | fØo |
|
<table>
|
||||||
|---------|-----|-----|-----|-----|
|
<tbody>
|
||||||
| **foo** | ✔️ | ✔️ | ✔️ | ✔️ |
|
<tr>
|
||||||
| **føo** | ❌ | ✔️ | ❌ | ✔️ |
|
<th>matches</th>
|
||||||
| **fOo** | ❌ | ❌ | ✔️ | ✔️ |
|
<th>foo</th>
|
||||||
| **fØo** | ❌ | ❌ | ❌ | ✔️ |
|
<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
|
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
|
through the completions. Use Shift-TAB to cycle backwards. Note that if you're
|
||||||
|
@ -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
|
both). On top of that, a letter with no diacritic marks will match that letter
|
||||||
with or without marks:
|
with or without marks:
|
||||||
|
|
||||||
| matches | foo | føo | fOo | fØo | |---------|-----|-----|-----|-----| |
|
---------------------------------------------
|
||||||
**foo** | ✔️ | ✔️ | ✔️ | ✔️ | | **føo** | ❌ | ✔️ | ❌ | ✔️ | | **fOo** | ❌ | ❌ |
|
| _matches_ | _foo_ | _føo_ | _fOo_ | _fØo_ |
|
||||||
✔️ | ✔️ | | **fØo** | ❌ | ❌ | ❌ | ✔️ |
|
---------------------------------------------
|
||||||
|
| _foo_ | ✔️ | ✔️ | ✔️ | ✔️ |
|
||||||
|
---------------------------------------------
|
||||||
|
| _føo_ | ❌ | ✔️ | ❌ | ✔️ |
|
||||||
|
---------------------------------------------
|
||||||
|
| _fOo_ | ❌ | ❌ | ✔️ | ✔️ |
|
||||||
|
---------------------------------------------
|
||||||
|
| _fØo_ | ❌ | ❌ | ❌ | ✔️ |
|
||||||
|
---------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
Use the TAB key to accept a completion and continue pressing TAB to cycle
|
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
|
through the completions. Use Shift-TAB to cycle backwards. Note that if you're
|
||||||
|
Loading…
Reference in New Issue
Block a user