Skip to content

Commit

Permalink
enh(xml) deprecate ActionScript inside script tags
Browse files Browse the repository at this point in the history
Resolves #1212.
  • Loading branch information
joshgoebel committed Mar 1, 2020
1 parent 1e14962 commit b2d7cbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -18,6 +18,7 @@ Core Changes:

Language Improvements:

- enh(xml) deprecate ActionScript inside script tags (#2444) [Josh Goebel][]
- fix(javascript) prevent get/set variables conflicting with keywords (#2440) [Josh Goebel][]
- bug(clojure) Now highlights `defn-` properly (#2438) [Josh Goebel][]
- enh(bash) default value is another variable (#2439) [Josh Goebel][]
Expand Down
2 changes: 1 addition & 1 deletion src/languages/xml.js
Expand Up @@ -121,7 +121,7 @@ export default function(hljs) {
contains: [TAG_INTERNALS],
starts: {
end: '\<\/script\>', returnEnd: true,
subLanguage: ['actionscript', 'javascript', 'handlebars', 'xml']
subLanguage: ['javascript', 'handlebars', 'xml']
}
},
{
Expand Down

0 comments on commit b2d7cbe

Please sign in to comment.