Update Docs.md

pull/9423/head
ebicoglu 4 years ago committed by GitHub
parent eb64eb7954
commit ee15517d0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -623,6 +623,46 @@ If your `IElasticClient` needs additional configuration, please use override `IE
}
```
## Row Highlighting
You can apply highlight to specific code lines or a range of sequential lines.
See the following examples:
```
```C# {3, 5}
public class Book : Entity<Guid>
{
public string Name { get; set; }
public string Surname { get; set; }
}
```
```
```
```C# {2-4}
public class Book : Entity<Guid>
{
public string Name { get; set; }
public string Surname { get; set; }
}
```
```
```
```C# {1, 2-4}
public class Book : Entity<Guid>
{
public string Name { get; set; }
public string Surname { get; set; }
}
```
```
---
## Next
Docs Module is also available as a standalone application. Check out [VoloDocs](../Apps/VoloDocs).

Loading…
Cancel
Save