ysml/
lib.rs

1//! # YSML Rust Library
2//!
3//! A Rust library for parsing, manipulating, and converting YSML.
4//!
5//! See the [README](https://github.com/yupdates/ysml-rs/blob/main/README.md).
6//! The SDK is distributed under the MIT license, see [LICENSE](https://github.com/yupdates/ysml-rs/blob/main/LICENSE).
7
8/// Placeholder function
9pub fn parse_text<S>(txt: S)
10where
11    S: AsRef<str>,
12{
13    println!("YSML: {}", txt.as_ref());
14}