ebicoglu
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
40 additions and
0 deletions
-
docs/en/Modules/Docs.md
|
|
|
@ -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). |
|
|
|
|