Skip to content

Commit

Permalink
Update regex for html ending and update gitignore for Intellij
Browse files Browse the repository at this point in the history
  • Loading branch information
Casey Kulm committed Apr 25, 2018
1 parent 3b1329b commit a8b42be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified extension.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions extension/ref-inject-code-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* limitations under the License.
*/

var _PACKAGE_DOC_URL_REGEX = /http(?:s)?:\/\/d(?:eveloper)?\.android\.com\/reference\/(.+)\/package-(summary|descr)\.html/;
var _CLASS_DOC_URL_REGEX = /http(?:s)?:\/\/d(?:eveloper)?\.android\.com\/reference\/(.+)\.html/;
var _RESOURCE_DOC_URL_REGEX = /http(?:s)?:\/\/d(?:eveloper)?\.android\.com\/reference\/android\/(?:.+\/)?(R(?:\..+)?)\.html/;
var _PACKAGE_DOC_URL_REGEX = /http(?:s)?:\/\/d(?:eveloper)?\.android\.com\/reference\/(.+)\/package-(summary|descr)/;
var _CLASS_DOC_URL_REGEX = /http(?:s)?:\/\/d(?:eveloper)?\.android\.com\/reference\/(.+)/;
var _RESOURCE_DOC_URL_REGEX = /http(?:s)?:\/\/d(?:eveloper)?\.android\.com\/reference\/android\/(?:.+\/)?(R(?:\..+)?)/;

var _GOOGLESOURCE_SITE = "https://android.googlesource.com";
var _GITHUB_SITE = "https://github.com";
Expand Down

0 comments on commit a8b42be

Please sign in to comment.