diff --git a/docs/userGuide/plugins/googleAnalytics.mbdf b/docs/userGuide/plugins/googleAnalytics.mbdf
new file mode 100644
index 0000000000..a6da8457ed
--- /dev/null
+++ b/docs/userGuide/plugins/googleAnalytics.mbdf
@@ -0,0 +1,24 @@
+#### `Google Analytics`: Enhancing site with Google Analytics
+
+This plugin allows your web pages to be enhanced with [google analytics](https://analytics.google.com/analytics/web/#/) to track, analyse and improve your content.
+
+To enable it, add `googleAnalytics` to your site's plugins, and add the trackingID parameter via the `pluginsContext`.
+
+Name | Type | Default | Description
+---- | ---- | ------- | ------
+trackingID | `String` || Tracking ID provided by Google. Follow this [guide](https://support.google.com/analytics/answer/1008080) to get your Tracking ID.
+
+```js
+site.json
+{
+ ...
+ "plugins": [
+ "googleAnalytics"
+ ],
+ "pluginsContext": {
+ "googleAnalytics": {
+ "trackingID": "YOUR-TRACKING-ID", // replace with your google analytics tracking id.
+ }
+ }
+}
+```
diff --git a/docs/userGuide/usingPlugins.md b/docs/userGuide/usingPlugins.md
index 722612bdce..e306a8239c 100644
--- a/docs/userGuide/usingPlugins.md
+++ b/docs/userGuide/usingPlugins.md
@@ -171,8 +171,9 @@ Disabling the `anchors` plugin:
MarkBind has a set of built-in plugins that can be used immediately without installation.
-