summaryrefslogtreecommitdiff
path: root/scripts/kmd/kmd.close
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2025-01-26 11:37:12 +0000
committerGeorge Abbott <george@gabbott.dev>2025-01-26 11:37:12 +0000
commitbac748dbe8c28cf1ed3b387b24f89ffe5a58ffc9 (patch)
tree59cd9f416aaf68154dc919f7217e0344d9940a39 /scripts/kmd/kmd.close
parent725f1f1c08c2d7e338d649062622d313292a41fa (diff)
kmd
Diffstat (limited to 'scripts/kmd/kmd.close')
-rw-r--r--scripts/kmd/kmd.close34
1 files changed, 34 insertions, 0 deletions
diff --git a/scripts/kmd/kmd.close b/scripts/kmd/kmd.close
new file mode 100644
index 0000000..569e507
--- /dev/null
+++ b/scripts/kmd/kmd.close
@@ -0,0 +1,34 @@
+import "std";
+import "util";
+
+Kmd :: struct
+has
+ Mode :: enum(none, p, ul, ol);
+ HtmlOptions :: record(br_after_newline: bool);
+is
+ title : str,
+ date : ?str,
+ contents : str,
+do
+ new :: construct fn(text: str) -> ?Kmd
+ do
+ iter := text.split_iter("\n");
+ return construct Kmd // Kmd is coercible to ?Kmd.
+ as
+ title = iter.first(),
+ date = iter.after(),
+ contents = iter.rest(),
+ end;
+ end
+
+ apart :: deconstruct fn(^self) -> (str, str, str)
+ do
+ return (self.title, self.date, self.contents);
+ end
+
+ html :: fn(self, allocator: Allocator, opts: HtmlOptions, req_cap_if_known: ?usize) -> Kmd
+ do
+ mode : Mode = .none;
+ is_strong, is_emph := false, false;
+ end
+end