Nicolas Goaziou writes: > Hello, > > 林镇国 <mistka...@gmail.com> writes: > >> When I insert a link to my note, such as“这是一个[[link][链接]]啦~”, >> the text after the link, "啦~", will be formatting as link style. > > FWIW, I cannot reproduce it, i.e., only "链接" appears with a link face.
I can reproduce if "link" is a real link and "description" doesn't contain white space, for example, [[http://example.com/][Example]]blah ^^^^ Also under the org-link face It looks like `org-plain-link-re' doesn't think a link is end unless a punctuation character is found: org-plain-link-re (concat "\\<" types-re ":" "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)") ^^^^^^^^^^^^^^^^^ It is a reasonable assumption for English, but not for Chinese. > Regards,