Skip to content

Commit

Permalink
Add .plist to list of extensions for Xml (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
aryx authored Sep 19, 2024
1 parent 41b0231 commit bc03844
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Language.ml
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ let list = [
id_string = "xml";
name = "XML";
keys = [{|xml|}];
exts = [{|.xml|}];
exts = [{|.xml|}; {|.plist|}];
maturity = Alpha;
example_ext = Some {|.xml|};
excluded_exts = [];
Expand Down
2 changes: 1 addition & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ def to_json(self):
id_="xml",
name="XML",
keys=["xml"],
exts=[".xml"],
exts=[".xml", ".plist"],
example_ext=".xml",
maturity=Maturity.ALPHA,
shebangs=[]
Expand Down
3 changes: 2 additions & 1 deletion lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,8 @@
],
"maturity": "alpha",
"exts": [
".xml"
".xml",
".plist"
],
"example_ext": ".xml",
"excluded_exts": [],
Expand Down

0 comments on commit bc03844

Please sign in to comment.