Skip to content

Commit 7598f5d

Browse files
committed
Increase rows limit
1 parent f8c3c60 commit 7598f5d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/syntax/csv-include.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Specify a custom field separator (default is comma):
5353

5454
The directive includes built-in performance limits to handle large files efficiently:
5555

56-
- **Row limit**: Maximum of 10,000 rows will be displayed
56+
- **Row limit**: Maximum of 25,000 rows will be displayed
5757
- **Column limit**: Maximum of 100 columns will be displayed
5858
- **File size limit**: Maximum file size of 10MB
5959

src/Elastic.Markdown/Myst/Directives/CsvInclude/CsvIncludeBlock.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class CsvIncludeBlock(DirectiveBlockParser parser, ParserContext context)
1717
public bool Found { get; private set; }
1818
public string? Caption { get; private set; }
1919
public string Separator { get; private set; } = ",";
20-
public int MaxRows { get; private set; } = 10000;
20+
public int MaxRows { get; private set; } = 25000;
2121
public long MaxFileSizeBytes { get; private set; } = 10 * 1024 * 1024; // 10MB
2222
public int MaxColumns { get; private set; } = 100;
2323

0 commit comments

Comments
 (0)