Metadata-Version: 2.1
Name: smoltext
Version: 1.4.7
Summary: A font converter utility with the extra fonts included in utf8.
Home-page: UNKNOWN
Author: Sofi
License: UNKNOWN
Platform: UNKNOWN
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

# Smoltext

```
$ smoltext -h
usage: smoltext [-h] [-c] [-f FONT] [--list-fonts] [text [text ...]]

A font converter utility with the extra fonts included in utf8.

positional arguments:
  text                  text to process

optional arguments:
  -h, --help            show this help message and exit
  -c, --copy            copies processed text to clipboard
  -f FONT, --font FONT  which font to use
  --list-fonts          list all supported fonts
$ smoltext -f italic hello
𝘩𝘦𝘭𝘭𝘰
$ smoltext -f subscript hello
ʰᵉˡˡᵒ
$ _
```

A font converter utility with the extra fonts included in utf8.

## Installation

### With pip:

```bash
pip3 install --upgrade --user smoltext
```

### With git:

```bash
git clone https://gitlab.com/imsofi/smoltext/ && cd smoltext
python3 -m pip install --upgrade build
python3 -m build
python3 -m pip install dist/smoltext-*.whl
```

## Current Features

* Processes text input and gives an output of the desired font.
* List out all available fonts with previews.
* Easy to use CLI commands.

## Tips & Tricks

You can use `xclip` or `wl-copy` to automatically copy the processed output to your clipboard.

Under xorg with `xclip`:
```bash
smoltext Hello! | xclip -sel clip
```

Under wayland with `wl-copy`:
```bash
smoltext Hello! | wl-copy
```

## Common issues

* Certain browsers and terminals fail to render certain font styles regardless of font.
* Kerning can be off due to terminals using a monospaced font.
* Certain fonts don't include all font styles used in this package.

## Links

* [Gitlab](https://gitlab.com/imsofi/smoltext/)
* [PyPI](https://pypi.org/project/smoltext/)


