From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nonono Subject: Re: Definition list not highlight for japanese character. Date: Tue, 19 Dec 2017 09:15:38 +0900 Message-ID: <87efnr374l.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38842) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eR5ZY-0007OJ-9A for emacs-orgmode@gnu.org; Mon, 18 Dec 2017 19:15:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eR5ZU-00059m-9z for emacs-orgmode@gnu.org; Mon, 18 Dec 2017 19:15:52 -0500 Received: from cock.li ([185.100.85.212]:50637) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eR5ZT-00055Q-TZ for emacs-orgmode@gnu.org; Mon, 18 Dec 2017 19:15:48 -0500 In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Shiyao MA , emacs-org list Hello Shiyao, I think your CJK font doesn't support a bold type. Do you can see as a bold font when you type *=E3=81=84=E3=82=8D=E3=81=AF=E3=81=AB=E3=81=BB=E3= =81=B8=E3=81=A9=E3=81=A1=E3=82=8A=E3=81=AC=E3=82=8B=E3=82=92* in the org-mo= de? If you have the Japanese font which supports a bold type like "Hiragino Maru Gothic ProN", you try below with your own risk: (let ((lst '((#x3000 . #x303f) ; Japanese-style punctuation (#x3040 . #x309f) ; hiragana=20 (#x30a0 . #x30ff) ; katakana (#xff00 . #xffef) ; full-width roman and half-width katakana (#x4e00 . #x9faf) ; cjk unified-ideographs ))) (while lst (set-fontset-font nil (car lst) (font-spec :family "Hiragino Maru Gothic ProN" :size 16)) (setq lst (cdr lst)))) Change "Hiragino Maru Gothic ProN" to the font what you have, and find a good-looking font by trial-and-error. Best. Nonono. Shiyao MA writes: > Hi, > > Definition list not highlight for japanese character. > > for example, check this picture: > https://imgur.com/a/dBKt6 > > =E3=81=A9=E3=81=86=E3=81=84=E3=81=9F=E3=81=97=E3=81=BE=E3=81=97=E3=81=A6= =E3=80=80is not highlighted, where asdf is highlighted. > > --=20 > Best, > Shiyao > --=20 Nonono