Metadata-Version: 2.4
Name: tir-gfm-lite
Version: 0.1.6
Summary: GFM <-> TIR converter backend for tirenvi
Author: OGAWA Keiji
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# tir-gfm-lite

GFM <-> TIR converter backend for tirenvi.

## Install

```bash
pip install tir-gfm-lite
```

## Usage

```bash
tir-gfm-lite parse file.md > file.tir
tir-gfm-lite unparse file.md < file.tir
```

## Behavior

- Table cells do not support multiline content in GFM
- Newlines inside a cell are encoded as `\n` on unparse
- `\n` in GFM is treated as a literal string (not converted back to newline on parse)

## Note

This is a simplified (lite) GFM parser.

- Tables end when a line does not contain a pipe (`|`)
- Not fully compliant with the GFM specification
