Push request for issue #559

This commit is contained in:
Austin Cheney 2015-09-22 13:15:18 -05:00
parent 075be2cd40
commit 7b9001e478
2 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ module.exports = class PrettyDiff extends Beautifier
lang = "handlebars"
when "SGML"
lang = "markup"
when "XML", "Visualforce", "SVG"
when "XML", "Visualforce", "SVG", "XSD", "XSL"
lang = "xml"
when "HTML"
lang = "html"

View File

@ -9,14 +9,14 @@ module.exports = {
Supported Grammars
###
grammars: [
"XML"
"XML", "XSD", "XSL"
]
###
Supported extensions
###
extensions: [
'xml'
'xml', 'xsd', 'xsl'
]
defaultBeautifier: "Pretty Diff"