Metadata-Version: 2.4
Name: mdsyntax
Version: 0.2.0
Summary: Render markdown with syntax highlighting in the terminal
Project-URL: Homepage, https://github.com/yourusername/mdsyntax
Project-URL: Repository, https://github.com/yourusername/mdsyntax
Project-URL: Issues, https://github.com/yourusername/mdsyntax/issues
Author-email: Your Name <you@example.com>
License-Expression: MIT
License-File: LICENSE
Keywords: ansi,cli,console,markdown,syntax-highlighting,terminal
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Terminals
Classifier: Topic :: Text Processing :: Markup :: Markdown
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: colorama>=0.4.6
Requires-Dist: pygments>=2.17.0
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.4; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Description-Content-Type: text/markdown

# mdsyntax

[![PyPI version](https://img.shields.io/pypi/v/mdsyntax.svg)](https://pypi.org/project/mdsyntax/)
[![Python versions](https://img.shields.io/pypi/pyversions/mdsyntax.svg)](https://pypi.org/project/mdsyntax/)
[![CI](https://github.com/Azaias/mdsyntax/actions/workflows/ci.yml/badge.svg)](https://github.com/Azaias/mdsyntax/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Render markdown with syntax highlighting in the terminal.

## Installation

```bash
pip install mdsyntax
```

## Usage

### Python API

```python
from mdsyntax import md_print, md_render

# Print directly to terminal
md_print("""
# Hello World

This is **bold** and *italic* text.

```python
def greet(name):
    return f"Hello, {name}!"
```
""")

# Get ANSI string for further processing
output = md_render("Some `inline code` here")
```

### Command Line

```bash
# Render a file
mdsyntax README.md

# Pipe from stdin
echo "# Hello" | mdsyntax

# Use a different syntax theme
mdsyntax --style dracula document.md

# List available themes
mdsyntax --list-styles
```

## Styling API

Style arbitrary text without markdown:

```python
from mdsyntax import Style, style

# Static methods
print(Style.bold_text("important"))
print(Style.italic_text("emphasis"))
print(Style.color("warning", fg="red"))
print(Style.color("highlight", fg="white", bg="blue"))

# Chainable API
print(style("hello").bold().italic())
print(style("fancy").fg("cyan").underline())
print(style("rgb").fg((255, 100, 50)))  # RGB colors
```

Available styles:
- `bold()` / `Style.bold_text()`
- `dim()` / `Style.dim_text()`
- `italic()` / `Style.italic_text()`
- `underline()` / `Style.underline_text()`
- `strikethrough()` / `Style.strike_text()`
- `fg(color)` / `bg(color)` - named colors or RGB tuples

Named colors: `black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `white`

## Features

- Headers (h1-h6) with color coding
- **Bold**, *italic*, ***bold italic***
- ~~Strikethrough~~
- `Inline code`
- Fenced code blocks with syntax highlighting
- [Links](https://example.com)
- Unordered and ordered lists
- Task lists
- Blockquotes
- Horizontal rules

## Configuration

### Code Styles

Any [Pygments style](https://pygments.org/styles/) is supported. Popular options:

- `monokai` (default)
- `dracula`
- `one-dark`
- `gruvbox-dark`
- `nord`
- `github-dark`

### True Color

By default, mdsyntax auto-detects 24-bit color support via the `COLORTERM` environment variable. You can override this:

```python
# Force 256-color mode
md_print(text, true_color=False)

# Force true color
md_print(text, true_color=True)
```

## API Reference

### `md_print(text, *, code_style="monokai", code_width=None, true_color=None)`

Print markdown to terminal.

- `text`: Markdown string to render
- `code_style`: Pygments style name for code blocks
- `code_width`: Fixed width for code blocks (default: terminal width)
- `true_color`: Use 24-bit color (default: auto-detect)

### `md_render(...) -> str`

Same arguments as `md_print`, but returns the ANSI-formatted string instead of printing.

### `MarkdownRenderer`

Dataclass for more control:

```python
from mdsyntax import MarkdownRenderer

renderer = MarkdownRenderer(
    code_style="dracula",
    code_width=80,
    true_color=True,
)
output = renderer.render(markdown_text)
```

### `SyntaxHighlighter`

Standalone code highlighter:

```python
from mdsyntax import SyntaxHighlighter

hl = SyntaxHighlighter(style="monokai")
print(hl.highlight("print('hello')", "python"))
print(SyntaxHighlighter.available_styles())
```

### `Style` / `style()`

Style text without markdown parsing:

```python
from mdsyntax import Style, style

# Static (returns string directly)
Style.bold_text("text")
Style.color("text", fg="red", bg="white")

# Chainable (call str() or print directly)
style("text").bold().fg("blue")
```

### `Ansi`

Direct access to ANSI escape codes:

```python
from mdsyntax import Ansi

print(f"{Ansi.BOLD}Bold{Ansi.BOLD_OFF}")
print(f"{Ansi.FG_RED}Red{Ansi.FG_DEFAULT}")
print(f"{Ansi.rgb_fg(255, 100, 50)}RGB{Ansi.FG_DEFAULT}")
```

## License

MIT

## Contributing

Contributions are welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
