Skip to content

Commit

Permalink
Test case: two bold words after list item
Browse files Browse the repository at this point in the history
Thanks to Howard Melman for reporting this in GH-176.
  • Loading branch information
jrblevin committed Jun 13, 2017
1 parent c812747 commit 8b365fc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/markdown-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -2885,6 +2885,13 @@ takes precedence)."
(markdown-test-string "> Quote with `**stars**`"
(should-not (markdown-range-property-any 17 21 'face '(markdown-italic-face)))))

(ert-deftest test-markdown-font-lock/two-bold-words-after-list ()
"Test two bold words after a list marker."
:expected-result :failed
(markdown-test-string "- **foo** **bar**"
(should-not (markdown-range-property-any
(point-min) (point-max) 'face '(markdown-italic-face)))))

;;; Markdown Parsing Functions:

(ert-deftest test-markdown-parsing/extend-region-function ()
Expand Down

0 comments on commit 8b365fc

Please sign in to comment.