Skip to content

Commit

Permalink
9.15.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcos Cáceres committed May 29, 2019
1 parent 7f529c9 commit 0785e2b
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 11 deletions.
1 change: 0 additions & 1 deletion AUTHORS.en.txt
Expand Up @@ -276,4 +276,3 @@ Contributors:
- Sean T. Allen <sean@monkeysnatchbanana.com>
- Greg Cline <gregrcline@gmail.com>
- Sejin Jeon <jinaidy93@gmail.com>
- Taif Alimov <inzeppelin@gmail.com>
9 changes: 9 additions & 0 deletions CHANGES.md
Expand Up @@ -6,6 +6,15 @@ New styles:

Improvements:

## Version 9.15.8

New languages:
none.
New styles:
none.
Improvements:
- fix(bash): revert escaped double quotes - broke Firefox/Safari.

## Version 9.15.7
New languages:
none.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '9.15'
# The full version, including alpha/beta/rc tags.
release = '9.15.7'
release = '9.15.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -6,7 +6,7 @@
"syntax"
],
"homepage": "https://highlightjs.org/",
"version": "9.15.7",
"version": "9.15.8",
"author": {
"name": "Ivan Sagalaev",
"email": "maniac@softwaremaniacs.org"
Expand Down
2 changes: 1 addition & 1 deletion src/languages/bash.js
Expand Up @@ -15,7 +15,7 @@ function(hljs) {
};
var QUOTE_STRING = {
className: 'string',
begin: /(?<!\\)"/, end: /(?<!\\)"/,
begin: /"/, end: /"/,
contains: [
hljs.BACKSLASH_ESCAPE,
VAR,
Expand Down
2 changes: 0 additions & 2 deletions test/detect/bash/default.txt
Expand Up @@ -13,5 +13,3 @@ fi
genApacheConf(){
echo -e "# Host ${HOME_DIR}$1/$2 :"
}

echo '"quoted"' | tr -d \" > text.txt
2 changes: 0 additions & 2 deletions test/markup/bash/escaped-quote.expect.txt

This file was deleted.

2 changes: 0 additions & 2 deletions test/markup/bash/escaped-quote.txt

This file was deleted.

0 comments on commit 0785e2b

Please sign in to comment.