diff --git a/src/lib.rs b/src/lib.rs index 8493850..fc49240 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,4 +14,16 @@ pub struct CodeBlock { language: String, text: String, } + +pub struct Emphasis { + italic: bool, + bold: bool, +} + +pub struct Blockquote { + level: u8, +} + +// TODO: able take care of lists i am too drunk for this tonight + pub fn parse() {}