Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/markdown-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -2877,7 +2877,7 @@ takes precedence)."
(markdown-test-range-has-face 932 949 markdown-url-face)
(markdown-test-range-has-face 951 957 markdown-link-title-face)
(markdown-test-range-has-face 958 958 markdown-markup-face)
(should (equal '((26 . 8734)) (get-text-property 932 'composition))))))
(should (get-text-property 932 'composition)))))

(ert-deftest test-markdown-font-lock/hidden-urls-reference ()
"Test URL hiding and toggling."
Expand All @@ -2897,7 +2897,7 @@ takes precedence)."
(markdown-test-range-has-face 6 7 markdown-markup-face)
(markdown-test-range-has-face 8 27 markdown-reference-face)
(markdown-test-range-has-face 28 28 markdown-markup-face)
(should (equal '((20 . 8734)) (get-text-property 8 'composition))))))
(should (get-text-property 8 'composition)))))

(ert-deftest test-markdown-font-lock/snake-case-code-in-heading ()
"Test underscores in inline code in headings."
Expand Down