From fb922193b18aef1097d2882bf037b479d0474534 Mon Sep 17 00:00:00 2001 From: sam lovelace Date: Sun, 28 Nov 2021 03:25:55 +0000 Subject: [PATCH] added text fields to blockquote and empasis --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index fc49240..6f22d37 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,12 +18,16 @@ pub struct CodeBlock { pub struct Emphasis { italic: bool, bold: bool, + text: String, } pub struct Blockquote { level: u8, + text: String, } // TODO: able take care of lists i am too drunk for this tonight + + pub fn parse() {}