Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.06 KB

README.md

File metadata and controls

32 lines (22 loc) · 1.06 KB

hypua

GitHub Workflow Status License Crates.io GitHub code size in bytes

한양 PUA 코드로 인코딩된 옛한글을 첫가끝(IPF) 방식으로 변환하는 라이브러리

문서

사용법

  • Cargo.tomldependencies 항목에 hypua를 추가합니다.
[dependencies]
hypua = "0.2.0"

사용 예

example/hunmin.rs:

use hypua::to_ipf_string;

fn main() {
    let text = "이런 젼로 어린 百姓이 니르고져  배 이셔도.";
    println!("{}", to_ipf_string(text));
}