summaryrefslogtreecommitdiff
path: root/markup.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-08 21:30:11 +0200
committerxengineering <me@xengineering.eu>2023-04-08 22:15:45 +0200
commitdbf0ea2dd53b88a26ab7e3cc12a06344022d57ec (patch)
tree5b85f2d3ef16cc531ab6d35a18fb0e54bc82350f /markup.go
parentd0d740cd58cef0adea51aae5c9df37181a0ed270 (diff)
downloadceres-dbf0ea2dd53b88a26ab7e3cc12a06344022d57ec.tar
ceres-dbf0ea2dd53b88a26ab7e3cc12a06344022d57ec.tar.zst
ceres-dbf0ea2dd53b88a26ab7e3cc12a06344022d57ec.zip
Move title parsing to new markup.go file
The new recipe markup which replaces Markdown will need an own file to be implemented.
Diffstat (limited to 'markup.go')
-rw-r--r--markup.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/markup.go b/markup.go
new file mode 100644
index 0000000..c0a6d45
--- /dev/null
+++ b/markup.go
@@ -0,0 +1,18 @@
+package main
+
+import (
+ "bufio"
+ "strings"
+)
+
+func titleFromMarkup(markup string) string {
+ scanner := bufio.NewScanner(strings.NewReader(markup))
+ for scanner.Scan() {
+ line := scanner.Text()
+ cut, found := strings.CutPrefix(line, "# ")
+ if found {
+ return cut
+ }
+ }
+ return "no title detected"
+}