OpMark
is an experimental markup language focused on presentation making. It's still in pre-alpha stage.
```text
This is a simple example of OpMark.
You can markup text using the following syntax:
bold
code
/italics/
$small$
~strikethrough~
underline
You can make lists:
Github ```
```rust use opmark::Parser; use std::{ fs::readtostring, path::Path, };
fn main() { let path = Path::new("./foo/bar.opmark"); let filecontent = readtostring(path).expect("Failed at reading file"); let parser = Parser::new(filecontent); for mark in parser { // do some stuff } } ```