Metadata-Version: 2.4
Name: jsonl2htmlmd
Version: 0.1.0
Summary: Convert JSONL files into HTML tables with full Markdown rendering support
Author-email: BrookJI <lllabmaster@gmail.com>
License: MIT
Keywords: jsonl,markdown,html,datatable,viewer,llm,dataset
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# jsonl2htmlmd

A command-line tool to convert JSONL files into interactive HTML tables with full Markdown rendering support.

Supports:
- GitHub-flavored Markdown
- Syntax highlighting via highlight.js
- Pagination, search, and sorting via DataTables
- Large JSONL datasets
- LLM / SFT dataset visualization

---

## Installation

```bash
pip install jsonl2htmlmd
```


## Usage

```bash
jsonl2htmlmd -i data.jsonl -o output.html
```

## Specify columns:

```bash
jsonl2htmlmd -i data.jsonl -o output.html -f prompt,response,analysis
```

## Arguments
| Argument       | Description                            |
| -------------- | -------------------------------------- |
| `-i, --input`  | Input JSONL file path                  |
| `-o, --output` | Output HTML file path                  |
| `-f, --fields` | Comma-separated field names (optional) |

