Added Test and the language file

This commit is contained in:
Louis G. Vichy 2016-08-13 04:32:30 -04:00
parent 2fa06c0203
commit 80a99c29c5
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<App>
<DockPanel>
<StatusBarBackground Dock="Top" />
<ScrollView ClipToBounds="true">
<StackPanel>
<Text FontSize="30">Hello, world!</Text>
<Slider/>
<Button Text="Button" />
<Switch Alignment="Left" /> </StackPanel>
</ScrollView>
</DockPanel>
</App>

View File

@ -0,0 +1,2 @@
<App> <DockPanel> <StatusBarBackground Dock="Top"/> <ScrollView ClipToBounds="true"> <StackPanel> <Text FontSize="30">Hello, world!</Text> <Slider/> <Button Text="Button"/> <Switch Alignment="Left"/> </StackPanel> </ScrollView> </DockPanel>
</App>

22
src/languages/ux.coffee Normal file
View File

@ -0,0 +1,22 @@
module.exports = {
name: "UX"
namespace: "ux"
fallback: ['html']
###
Supported Grammars
###
grammars: [
"UX"
]
###
Supported extensions
###
extensions: [
"ux"
]
defaultBeautifier: "Pretty Diff"
}