We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f600f commit f043658Copy full SHA for f043658
1 file changed
tests/markdown-test.el
@@ -1000,6 +1000,11 @@ Test point position upon removal and insertion."
1000
(goto-char (point-max))
1001
(call-interactively 'markdown-insert-list-item)
1002
(should (string-equal (buffer-string) "6. foo\n7. ")))
1003
+ ;; Following a fancy list item, on the next line
1004
+ (markdown-test-string "#. foo"
1005
+ (goto-char (point-max))
1006
+ (call-interactively 'markdown-insert-list-item)
1007
+ (should (string-equal (buffer-string) "#. foo\n#. ")))
1008
;; Following a nested ordered list item
1009
(markdown-test-string "6. foo\n 1. bar"
1010
0 commit comments