MattDMo/Neon-color-scheme

XML attribute not highlighted

Closed this issue · 6 comments

XML attributes (xmlns:android, package) are not highlighted:
xml

The are highlighted with different color in Monokai

@leesei could you attach the plain text of the file above? That way I don't have to try and type the entire thing in by hand. Thanks,

Matt

Opps, sorry

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.googlecode.mp4parser.android"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <application android:icon="@drawable/icon" android:label="@string/app_name">

        <activity android:name=".Mp4ParserPerformance"
                  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>
    <uses-sdk android:minSdkVersion="4" />
</manifest>

How does this look?

xml attribute name localname

Marvelous, thanks.

BTW, I also wanted to learn syntax highlighting.
Can you point me to some resource and tools?

I know of the unofficial Sublime docs and AAAPackageDev (but haven't tried it).
Are you using them?

Just reading your blog and found it answered my question 🍺.

Fixed with 154e46a