2015-11-09 88 views
1

我在我的WordPress站點中安裝了「Crayon Syntax Highlighter」插件。Crayan語法突出顯示不能正確顯示我的xml代碼

它沒有正確顯示我的XML代碼。 這是我的實際XML代碼

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="androidumps.activeandroid" > 

<application 
android:name=".InitApplication" 
android:allowBackup="true" 
android:icon="@mipmap/ic_launcher" 
android:label="@string/app_name" 
android:theme="@style/AppTheme" > 
<!-- AA_DB_NAME points your database name --> 
<meta-data 
android:name="AA_DB_NAME" 
android:value="rootdatabase.db" /> 
<!-- AA_DB_VERSION points your database version --> 
<meta-data 
android:name="AA_DB_VERSION" 
android:value="1" /> 
<activity 
android:name=".MainActivity" 
android:label="@string/app_name" > 
<intent-filter> 
<action android:name="android.intent.action.MAIN" /> 

<category android:name="android.intent.category.LAUNCHER" /> 
</intent-filter> 
</activity> 
</application> 

</manifest> 

當我看到它在我的網站,它看起來像這樣, enter image description here

這個任何解決方案?

+0

嘗試在他們的github頁面上詢問:https://github.com/aramk/crayon-syntax-highlighter/issues –

回答

2

只需勾選「代碼解碼HTML實體」在蠟筆小新語法高亮設置,你是好去。

+0

我必須*取消選中此選項來糾正問題。 –