Skip to content

Commit 37e837d

Browse files
committed
Suppress lint warnings
Signed-off-by: Hiroshi Hatake <[email protected]>
1 parent e54556f commit 37e837d

File tree

1 file changed

+26
-23
lines changed

1 file changed

+26
-23
lines changed

pipeline/inputs/tail.md

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -484,9 +484,9 @@ Proper conversion ensures that your log data is correctly parsed, indexed, and s
484484
You should use this feature if your log files or messages are not in UTF-8 and you are seeing garbled or incorrectly rendered characters.
485485
This is common in environments that use:
486486

487-
* Modern Windows applications that log in UTF-16.
487+
- Modern Windows applications that log in UTF-16.
488488

489-
* Legacy Windows systems with applications that use traditional code pages (e.g., ShiftJIS, GBK, Win1252).
489+
- Legacy Windows systems with applications that use traditional code pages (e.g., ShiftJIS, GBK, Win1252).
490490

491491
### Configuration Parameters
492492

@@ -496,37 +496,40 @@ To enable encoding conversion, you will use one of the following two parameters
496496

497497
Use this parameter for high-performance conversion of UTF-16 encoded logs to UTF-8. This method utilizes modern processor features (SIMD instructions) to accelerate the conversion process, making it highly efficient.
498498

499-
* Use Case: Ideal for logs coming from modern Windows environments that default to UTF-16.
500-
* Supported Values:
501-
* UTF-16LE (Little-Endian)
502-
* UTF-16BE (Big-Endian)
499+
- Use Case: Ideal for logs coming from modern Windows environments that default to UTF-16.
500+
- Supported Values:
501+
- UTF-16LE (Little-Endian)
502+
- UTF-16BE (Big-Endian)
503503

504-
2. `Generic.Encoding`
504+
1. `Generic.Encoding`
505505

506506
Use this parameter to convert from a wide variety of other character encodings, particularly legacy Windows code pages.
507507

508-
* Use Case: Essential for logs from older systems or applications configured for specific regions, common in East Asia and Eastern Europe.
509-
* Supported Values: You can use any of the names or aliases listed below.
508+
- Use Case: Essential for logs from older systems or applications configured for specific regions, common in East Asia and Eastern Europe.
509+
- Supported Values: You can use any of the names or aliases listed below.
510510

511511
### East Asian Encodings
512-
* `ShiftJIS` (Aliases: `SJIS`, `CP932`, `Windows-31J`)
513-
* `GB18030`
514-
* `GBK`: (Alias: `CP936`)
515-
* `UHC` (Unified Hangul Code): (Aliases: `CP949` and `Windows-949`)
516-
* `Big5`: (Alias: `CP950`)
512+
513+
- `ShiftJIS` (Aliases: `SJIS`, `CP932`, `Windows-31J`)
514+
- `GB18030`
515+
- `GBK`: (Alias: `CP936`)
516+
- `UHC` (Unified Hangul Code): (Aliases: `CP949` and `Windows-949`)
517+
- `Big5`: (Alias: `CP950`)
517518

518519
### Windows (ANSI) Encodings
519-
* `Win1250` (Central European): (Alias: `CP1250`)
520-
* `Win1251` (Cyrillic): (Alias: `CP1251`)
521-
* `Win1252` (Western European / Latin): (Alias: `CP1252`)
522-
* `Win1253` (Greek): (Alias: `CP1253`)
523-
* `Win1254` (Turkish): (Alias: `CP1254`)
524-
* `Win1255` (Hebrew): (Alias: `CP1255`)
525-
* `Win1256` (Arabic): (Alias: `CP1256`)
520+
521+
- `Win1250` (Central European): (Alias: `CP1250`)
522+
- `Win1251` (Cyrillic): (Alias: `CP1251`)
523+
- `Win1252` (Western European / Latin): (Alias: `CP1252`)
524+
- `Win1253` (Greek): (Alias: `CP1253`)
525+
- `Win1254` (Turkish): (Alias: `CP1254`)
526+
- `Win1255` (Hebrew): (Alias: `CP1255`)
527+
- `Win1256` (Arabic): (Alias: `CP1256`)
526528

527529
### DOS (OEM) Encodings
528-
* `Win866` (Cyrillic - DOS): (Alias: `CP866`)
529-
* `Win874` (Thai): (Alias: `CP874`)
530+
531+
- `Win866` (Cyrillic - DOS): (Alias: `CP866`)
532+
- `Win874` (Thai): (Alias: `CP874`)
530533

531534
### Configuration Example
532535

0 commit comments

Comments
 (0)