-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
75 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
### Элемент по умолчанию | ||
|
||
{% note info %} | ||
|
||
Поддерживается в табах и радиобаттонах. | ||
|
||
{% endnote %} | ||
|
||
Если нужно, чтобы выбранный элемент был раскрыт по умолчанию, добавьте атрибут `{selected}` к нужному пункту. | ||
|
||
{% list tabs accordion %} | ||
|
||
- Пример с табами | ||
|
||
```markdown | ||
{% list tabs %} | ||
|
||
- Название пункта 1 | ||
|
||
Текст | ||
|
||
- название пункта 2 {selected} | ||
|
||
Пункт будет открыт по умолчанию. | ||
|
||
{% endlist %} | ||
``` | ||
|
||
**Результат:** | ||
|
||
{% list tabs %} | ||
|
||
- Название пункта 1 | ||
|
||
Текст | ||
|
||
- название пункта 2 {selected} | ||
|
||
Пункт будет открыт по умолчанию. | ||
|
||
{% endlist %} | ||
|
||
- Пример с радиобаттонами | ||
|
||
```markdown | ||
{% list tabs radio %} | ||
|
||
- Название пункта 1 | ||
|
||
Текст. | ||
|
||
- Название пункта 2 {selected} | ||
|
||
Пункт будет открыт по умолчанию. | ||
|
||
{% endlist %} | ||
``` | ||
|
||
**Результат:** | ||
|
||
{% list tabs radio %} | ||
|
||
- Название пункта 1 | ||
|
||
Текст. | ||
|
||
- Название пункта 2 {selected} | ||
|
||
Пункт будет открыт по умолчанию. | ||
|
||
{% endlist %} | ||
|
||
{% endlist %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters