我正在使用timyMCE版本3 { majorVersion : '3', minorVersion : '5.4.1' }
。当我将Content
放入textarea时,我得到了以下数据。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p> Content </p>
</body>
</html>
当我调用getContent()
方法时,我应该怎么做才能将其更改为低于输出?
<html>
<head>
<meta http-equiv="content-type" content="text/html;" charset="UTF-8">
<style>
/** Specify a font named "MyFont",
and specify the URL where it can be found: */
@font-face {
font-family: "MyFont";
src: url('file:///android_asset/fonts/RSU_Regular.ttf');
}
body { font-family:"MyFont"}
</style>
</head>
<body>
<p> Content </p>
</body>
</html>
你能帮我吗?