Metadata-Version: 2.2
Name: markdown-renderer-lite
Version: 0.2.0
Summary: A lightweight Markdown to HTML converter with syntax highlighting.
Home-page: https://github.com/orhancavus/markdown_renderer_lite
Author: Orhan Cavus
Author-email: orhancv@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Markdown renderer - Markdown to HTML Converter

Author : Orhan Cavus  
Date   : 20.02.2025  

`markdown_renderer_lite` is a simple command-line tool that converts Markdown into HTML with syntax highlighting.

## Features

- Supports **fenced code blocks** and **syntax highlighting** (`codehilite`)
- Outputs clean, well-structured HTML
- Customizable CSS for styling
- Lightweight and easy to use

## Installation

### Install Locally

Clone the repository and install the package:

```sh
git clone https://github.com/yourusername/markdown_renderer_lite.git
cd markdown_renderer_lite
pip install -e .
```

or

```sh
pip install markdown-renderer-lite
```

### Usage

```sh
echo "# Hello World" | markdown_renderer_lite > output.html
```

or create bash script to view the markdown file directly in Safari

```sh
% markdown_html_view README.md
```

```sh
python -m markdown_renderer_lite README.md
```
