Added details for using links within markup.

This commit is contained in:
Gary McDougall
2022-09-10 17:37:09 -07:00
committed by Phil Scott
parent bb013dcc52
commit 9cbfda9e4a
2 changed files with 16 additions and 2 deletions

View File

@ -104,7 +104,16 @@ AnsiConsole.Markup("[#ff0000]Bar[/] ");
AnsiConsole.Markup("[rgb(255,0,0)]Baz[/] ");
```
For a list of colors, see the [Colors](xref:colors) appendix section.
For a list of colors, see the [Colors](xref:colors) appendix section.
## Links
To output a clickable link, you can use the `[link]` style.
```csharp
AnsiConsole.Markup("[link]https://spectreconsole.net[/]");
AnsiConsole.Markup("[link=https://spectreconsole.net]Spectre Console Documentation[/]");
```
## Styles