aboutsummaryrefslogtreecommitdiff
path: root/Sources/NorgUI/Views/Blocks/BlockView.swift
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2026-06-21 19:41:53 +0200
committerRuben Beltran del Rio <jj@r.bdr.sh>2026-06-21 19:41:57 +0200
commitc9a81072683dc9955ed7a91ad5879d087c08db1a (patch)
tree7f3a9f477111c80da65d98e03b0dc49b2f706a2d /Sources/NorgUI/Views/Blocks/BlockView.swift
parentab1d7a447c87509136edfff2202ef2c012a4c11a (diff)
Prevent asterisk from becoming emojiHEAD1.2.2main
Diffstat (limited to 'Sources/NorgUI/Views/Blocks/BlockView.swift')
-rw-r--r--Sources/NorgUI/Views/Blocks/BlockView.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/Sources/NorgUI/Views/Blocks/BlockView.swift b/Sources/NorgUI/Views/Blocks/BlockView.swift
index 9889fe9..95f54d0 100644
--- a/Sources/NorgUI/Views/Blocks/BlockView.swift
+++ b/Sources/NorgUI/Views/Blocks/BlockView.swift
@@ -18,7 +18,7 @@ struct BlockView: View {
case .unorderedListItem(_, let status, let content, let line):
ListItemView(
- marker: "✳", showsMarkerWithTask: false, status: status, content: content, line: line,
+ marker: "✳\u{FE0E}", showsMarkerWithTask: false, status: status, content: content, line: line,
onSetStatus: onSetStatus)
case .orderedListItem(_, let status, let content, let line):