File tree 4 files changed +20
-3
lines changed
4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 21
21
- [ #76 ] ( https://github.com/clojure-emacs/clojure-ts-mode/pull/76 ) : Improve performance of semantic indentation by caching rules.
22
22
- [ #74 ] ( https://github.com/clojure-emacs/clojure-ts-mode/issues/74 ) : Add imenu support for keywords definitions.
23
23
- [ #77 ] ( https://github.com/clojure-emacs/clojure-ts-mode/issues/77 ) : Update grammars to the latest versions.
24
+ - Improve markdown highlighting in the docstrings.
24
25
25
26
## 0.2.3 (2025-03-04)
26
27
Original file line number Diff line number Diff line change 17
17
(setq checkdoc-permit-comma-termination-flag t )
18
18
(setq checkdoc--interactive-docstring-flag nil )
19
19
20
- (setf eldev-lint-default '(elisp ))
20
+ (setq eldev-lint-default-excluded '(package ))
21
21
22
22
(with-eval-after-load 'elisp-lint
23
23
; ; We will byte-compile with Eldev.
Original file line number Diff line number Diff line change @@ -514,7 +514,14 @@ with the markdown-inline grammar."
514
514
:feature 'doc
515
515
:language 'markdown-inline
516
516
:override t
517
- `((code_span) @font-lock-constant-face)))
517
+ `([((image_description) @link)
518
+ ((link_destination) @font-lock-constant-face)
519
+ ((code_span) @font-lock-constant-face)
520
+ ((emphasis) @underline)
521
+ ((strong_emphasis) @bold)
522
+ (inline_link (link_text) @link)
523
+ (inline_link (link_destination) @font-lock-constant-face)
524
+ (shortcut_link (link_text) @link)])))
518
525
519
526
(treesit-font-lock-rules
520
527
:feature 'quote
Original file line number Diff line number Diff line change @@ -42,7 +42,16 @@ Don't format code this way."
42
42
" fizz" ))
43
43
44
44
(defmacro fix-bug
45
- " Fixes most known bugs."
45
+ " Fixes most known bugs.
46
+
47
+ Check markdown:
48
+ - [[some-function]]
49
+ - _emphasize_
50
+ - [link](https://github.com)
51
+ - __strong__
52
+ - *emphasize*
53
+
54
+ Looks good."
46
55
[& body]
47
56
`(try
48
57
~@body
You can’t perform that action at this time.
0 commit comments