more minor work

master
Able 2021-11-25 19:04:42 -06:00
parent a9ef34e3f0
commit 3a27a7917e
No known key found for this signature in database
GPG Key ID: 2BB8F62388A6A225
1 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
pub enum ProgrammingLanguage {
None,
}
pub struct RGBA {
red: u8,
green: u8,
@ -10,4 +14,8 @@ pub struct Header {
level: u8,
}
pub struct CodeBlock {
language: ProgrammingLanguage,
text: String,
}
pub fn parse() {}