emoji()
`:smile:` gibi emoji kısa kodlarını unicode emojiye dönüştürür.
import { emoji } from "@unifast/node";İmza
function emoji(): UnifastPluginParametreler
Yok.
Kullanım
import { compile, emoji } from "@unifast/node";
const md = `This is great :thumbsup: and I'm happy :smile:!`;
const result = compile(md, {
plugins: [emoji()],
});
// :thumbsup: → 👍, :smile: → 😄