New doc theme (#387)

This commit is contained in:
Phil Scott
2021-04-24 16:20:59 -04:00
committed by GitHub
parent b568098d5e
commit 2a9fbb1ee9
145 changed files with 197984 additions and 8746 deletions

View File

@ -5,14 +5,13 @@ Order: 3
The `MultiSelectionPrompt` can be used when you want the user to select
one or many items from a provided list.
<img src="../assets/images/multiselection.gif" style="width: 100%;" />
![Example of multiselection input](../assets/images/multiselection.gif)
<div class="alert alert-warning" role="alert" style="margin-top:20px;">
<i class="fas fa-exclamation-triangle icon-web"></i> The use of prompts
<?# Alert ?> The use of prompts
insides status or progress displays is not supported.
</div>
<?#/ Alert ?>
# Usage
## Usage
```csharp
// Ask for the user's favorite fruits
@ -37,4 +36,4 @@ foreach (string fruit in fruits)
{
AnsiConsole.WriteLine(fruit);
}
```
```