elispに相当することをしたい
<font color="red">normal<b>bold</b></font>
私はもう試した
(propertize (concat "normal"
(propertize "bold" 'font-lock-face
'(:weight bold)))
'font-lock-face '(:foreground "red"))
それでも、「赤」プロパティは「太字」プロパティを上書きし、最終的には
#("normalbold" 0 6
(font-lock-face
(:foreground "red"))
6 10
(font-lock-face
(:foreground "red")))
それは実行可能ですか?
ありがとう!