Shohei YOSHIDA

Results 212 comments of Shohei YOSHIDA

I'm not sure sort feature is like this ? ![footnote-sort](https://user-images.githubusercontent.com/554281/94455610-3e0fd000-01ee-11eb-8dd3-8c1529e4b031.gif) ```diff diff --git a/markdown-mode.el b/markdown-mode.el index a04f11d..54ec655 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -4538,6 +4538,42 @@ footnote text is found,...

Sorry belated reply. Please check #543. It fixes only recursive function call issue. I suppose it is difficult to fix slow down issue.

@aeporreca I have merged #543. Could you check latest version ?

https://github.com/github/linguist/blob/master/lib/linguist/languages.yml `lisp` is an alias of `Common Lisp`. Language list of markdown-mode has only original name and not support alias names(See above link). You can use `markdown-gfm-additional-languages` for adding your...

I suppose you can write such function as below. I suppose such function should not be implemented in markdown-mode. Because it is too difficult to implement correctly for sites where...

Could you explain how to reproduce this issue with sample markdown text ? Sorry my English is very poor and it is difficult to understand what you say only English...

I'm not sure what is correct behavior. However current markdown-mode navigation commands behaves similar to org-mode(`outline-mode`) navigation commands except a few cases. ``` * Title ** January - One -...

I have merged #487. I suppose https://github.com/jrblevin/markdown-mode/issues/352#issuecomment-409826496 issue is fixed. Please check latest version.

I suppose this issue is emacs problem, not markdown-mode.

I suppose this is not markdown-mode issue. You need to set `ispell-skip-region-alist` variable as below ```lisp (defun my/markdown-mode-hook () (add-to-list 'ispell-skip-region-alist '("#[a-zA-Z]+" forward-word))) (add-hook 'markdown-mode-hook #'my/markdown-mode-hook) ```