2

我在我的网站上使用 ckeditor。我想知道如何在 ckeditor 中输入印地语。我使用的是 kruti dev010。在 config.js 文件中,我包括:

config.font_names = 'kruti_dev_010;' + config.font_names;

在 content.css 文件中我添加了:

@font-face {
    font-family:'kruti_dev_010regular';
    src: url('krutidev-webfont.eot');
    src: url('krutidev-webfont.eot?#iefix') format('embedded-opentype'),
    url('krutidev-webfont.woff') format('woff'),
    url('krutidev-webfont.ttf') format('truetype'),
    url('krutidev-webfont.svg#kruti_dev_010bold') format('svg');
    font-weight: normal;
    font-style: normal;
}

我无法输入印地语,如果我从 word 中粘贴内容,它会显示一些特殊字符

4

1 回答 1

-1

在此处下载印地语字体 Kruti010 字体。

将其添加Config.jsCkEditor

config.font_names = 'Hindi/Kruti'; + config.font_names;

Ckeditor在langs 文件夹中添加印地语字体:

ckeditor/lang/Kruti/k010.ttf

在 ckeditor 的 content.css 中添加 css。

@font-face {
    font-family: 'Kruti';
    src: url('lang/Kruti/k010.eot');
    src: local("Hindi"), url("lang/Kruti/k010.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    }

正确检查您的路径。

于 2017-06-02T05:20:24.847 回答