Merge branch 'louisgv-fuse-ux'

This commit is contained in:
Glavin Wiechert 2016-09-11 20:59:52 -03:00
commit e3256d13bc
6 changed files with 43 additions and 1 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>

View File

@ -102,6 +102,10 @@
{
"name": "Émile Bergeron",
"url": "https://github.com/emileber"
},
{
"name": "Louis G Vichy",
"url": "https://github.com/louisgv"
}
],
"engines": {

View File

@ -61,6 +61,7 @@ module.exports = class PrettyDiff extends Beautifier
Twig: true
LESS: true
Swig: true
UX: true
Visualforce: true
"Riot.js": true
XTemplate: true
@ -89,7 +90,7 @@ module.exports = class PrettyDiff extends Beautifier
lang = "markup"
when "XML", "Visualforce", "SVG"
lang = "xml"
when "HTML"
when "HTML", "UX"
lang = "html"
when "JavaScript"
lang = "javascript"

View File

@ -66,6 +66,7 @@ module.exports = class Languages
"tss"
"twig"
"typescript"
"ux"
"vala"
"vue"
"visualforce"

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"
}