Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kostya/idn

LibIdn crystal binding.
https://github.com/kostya/idn

Last synced: 20 days ago
JSON representation

LibIdn crystal binding.

Awesome Lists containing this project

README

        

# Idn

LibIdn crystal binding.

## Installation

Add this to your application's `shard.yml`:

```yaml
dependencies:
idn:
github: kostya/idn
```

## Usage

```crystal
require "idn"

p Idn.to_ascii "топ-site.рф"
# "xn---site-iyehw.xn--p1ai"

p Idn.to_unicode "xn---site-iyehw.xn--p1ai"
# "топ-site.рф"
```