diff --git a/README.md b/README.md
index 6a83f2d..09d9708 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ console.log(amp) // amp string
## Options
name | default value | note
------------- | ------------- | -------------
+------------ | ------------- | -------------
cwd|`.`|image / styles base path
gaConfigPath| |`amp-analytics` config json path for [google analytics](https://www.ampproject.org/docs/analytics/analytics-vendors)
serviceWorker| |attributes of [amp-install-serviceworker](https://www.ampproject.org/docs/reference/components/amp-install-serviceworker)
e.g. `src`, `data-iframe-src`
@@ -115,11 +115,11 @@ This library ...
- also add `layout="responsive"` attribute
- replace `` with ``
- add ``
- - only support google analytics
+ - supports different types of vendors (https://www.ampproject.org/docs/analytics/analytics-vendors)
- also removed regular google analytics tag
- - it's optional
+ - it's optional
- add [amp-install-serviceworker](https://www.ampproject.org/docs/reference/components/amp-install-serviceworker)
- - it's optional
+ - it's optional
- replace all a tag links which destination is original site with absolute url which starts with http[s]
- original url comes from canonical's href attribute
- e.g. `` is replaced with ``
diff --git a/lib/googleanalytics/index.js b/lib/googleanalytics/index.js
index 808aa04..4635479 100644
--- a/lib/googleanalytics/index.js
+++ b/lib/googleanalytics/index.js
@@ -4,7 +4,7 @@ const googleanalytics = ($, options) => {
if (options.gaConfigPath) {
const config = utils.getRelativeFile(options.gaConfigPath, options.cwd)
const $script = $('')
- const $config = $(``)
+ const $config = $(``)
$('body').prepend($config)
$('head').prepend($script)
}