About

Rust port of [USBashka]'s [markdown2unicode].

Converts simple Markdown text to Unicode

Usage

```text $ markdown2unicode -h Converter from markdown notation to unicode characters

Usage: markdown2unicode [FILES]...

Arguments: [FILES]...

Options: -h, --help Print help -V, --version Print version

```

```text $ markdown2unicode -V markdown2unicode 0.1.0

```

Example

``text $ cat input Here is some *emphasis* **bold** ***bold emphasis*** andmono` text.

$ markdown2unicode input.txt Here is some 𝘦𝘮𝘱𝘩𝘢𝘴𝘪𝘴 𝐛𝐨𝐥𝐝 𝒃𝒐𝒍𝒅 𝒆𝒎𝒑𝒉𝒂𝒔𝒊𝒔 and 𝚖𝚘𝚗𝚘 text.

```