Moves all the pages up a level and hardcodes the section name

This commit is contained in:
Dave Glick
2020-09-01 15:12:21 -04:00
committed by Patrik Svensson
parent 65f0a085cc
commit caf7661e66
10 changed files with 2 additions and 17 deletions

25
docs/input/quick-start.md Normal file
View File

@ -0,0 +1,25 @@
Title: Quick Start
Order: 1
---
The fastest way of getting started using Spectre.Console is
to install the NuGet package.
```shell
> dotnet add package Spectre.Console
```
After that you will need to reference the `Spectre.Console` namespace.
Once that is done, you can start using all the available features.
```csharp
using Spectre.Console
public static class Program
{
public static void Main(string[] args)
{
AnsiConsole.Markup("[underline red]Hello[/] World!");
}
}
```