diff options
Diffstat (limited to 'src/posts/note.rs')
-rw-r--r-- | src/posts/note.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/posts/note.rs b/src/posts/note.rs index 95655d4..d7fa6c9 100644 --- a/src/posts/note.rs +++ b/src/posts/note.rs @@ -1 +1,7 @@ -struct note +enum TextFormat { + Markdown, + Plaintext, + Html, +} + +struct Note {} |