cjk()

CJK karakterleri arasındaki istenmeyen satır sonlarını kaldıran CJK dostu metin işleme.

import { cjk } from "@unifast/node";

İmza

function cjk(): UnifastPlugin

Parametreler

Yok.

Kullanım

import { compile, cjk } from "@unifast/node";

const md = `
今日は天気が
とても良いです。
`;

const result = compile(md, { plugins: [cjk()] });
console.log(result.output);
// <p>今日は天気がとても良いです。</p>

Örnekler

CJK satır sonu kaldırma