Crates.io | markdown2unicode |
lib.rs | markdown2unicode |
version | 0.2.1 |
source | src |
created_at | 2023-08-19 15:26:43.615809 |
updated_at | 2024-08-16 13:47:10.253672 |
description | Converter from markdown notation to unicode characters |
homepage | |
repository | https://github.com/qtfkwk/markdown2unicode |
max_upload_size | |
id | 948754 |
size | 56,877 |
Rust port of USBashka's markdown2unicode.
Converts simple Markdown text to Unicode
*Emphasis*
=> 𝘌𝘮𝘱𝘩𝘢𝘴𝘪𝘴**Strong**
=> 𝐒𝐭𝐫𝐨𝐧𝐠***Emphasis***
=> 𝑬𝒎𝒑𝒉𝒂𝒔𝒊𝒔 𝒔𝒕𝒓𝒐𝒏𝒈`Code span`
=> 𝙲𝚘𝚍𝚎 𝚜𝚙𝚊𝚗NOTE: This crate is superceded by unidown
.
Please use it instead of this one.
$ markdown2unicode -h
Converter from markdown notation to unicode characters
Usage: markdown2unicode [OPTIONS] [STRING]...
Arguments:
[STRING]... Markdown string(s)
Options:
-i <PATH> Input file(s)
-h, --help Print help
-V, --version Print version
$ markdown2unicode -V
markdown2unicode 0.2.0
$ markdown2unicode 'Here is some *emphasis*, **strong**, ***strong emphasis***, ~~strike~~, and `code` text.'
Here is some 𝘦𝘮𝘱𝘩𝘢𝘴𝘪𝘴, 𝐬𝐭𝐫𝐨𝐧𝐠, 𝒔𝒕𝒓𝒐𝒏𝒈 𝒆𝒎𝒑𝒉𝒂𝒔𝒊𝒔, ~~strike~~, and 𝚌𝚘𝚍𝚎 text.