diff --git a/src/lib.rs b/src/lib.rs index 6f22d37..2111de8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,5 @@ +pub struct Url; + pub struct RGBA { red: u8, green: u8, @@ -26,6 +28,19 @@ pub struct Blockquote { text: String, } +pub struct Link { + text: String, + url: Url, + title: Option, +} + +pub struct Image { + text: String, + image: Url, + title: Option, + link: Option, +} + // TODO: able take care of lists i am too drunk for this tonight