branch: elpa/gnosis
commit b221c6fffd08ede51f95aeb1d8db474721a73daa
Author: Thanos Apollo <[email protected]>
Commit: Thanos Apollo <[email protected]>
cloze-add-hints: Use parentheses instead of brackets.
---
gnosis.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnosis.el b/gnosis.el
index 0cf5dd14ada..bf13367f642 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -429,7 +429,7 @@ This will not be applied to sentences that start with
double space."
(when (and hint (not (string-empty-p hint)) (not (string= hint
"nil"))
(not (string= "\"\"" hint))
(search-backward cloze-string nil t))
- (replace-match (propertize (format "[%s]" hint)
+ (replace-match (propertize (format "(%s)" hint)
'face 'gnosis-face-cloze))
(goto-char (match-end 0)))) ; Move point to end of match
(buffer-string))))