How export CJK paragraph into html `<p>` tag in a better way

I use hugo for my personal blog in which I write articles in Chinese sometimes. And I notice hugo will export markdown below


一二三
四五六
七八九

into html below

<p>一二三
四五六
七八九</p>

and mainstream browser like Firefox will render like that:

一二三四五六七八九

That’s fine. But when displaying webpage on a web-kit-based browser or a terminal browser, the <p> tag would be rendered like that:

一二三 四五六 七八九

I don’t want those space between CJK characters. How to solve this? Are there ways to export characters in a markdown paragraph into one line in html (of course no white space between CJK chars) so that my poor elinks and nyxt can render my articles correctly.

P.S. I’ve set hasCJKLanguage and isCJKLanguage to true in my config.

Any help would be appreciated.