From 11c1dd4b9496c869c941b121e51757ebca40cf14 Mon Sep 17 00:00:00 2001 From: Jarek Rozanski Date: Mon, 27 Jan 2025 22:39:31 +0100 Subject: [PATCH] Code styling --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a305fd..8473db2 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ If the visitors browsers has `DoNotTrack` setting enabled in the browser, it wil You website can't overwrite this behaviour by specifying `suppressDnt` setting. -``` +```javascript app.use(WideAngle, { siteId: "8D27G3B9ACA01F4241", suppressDnt: true @@ -149,7 +149,7 @@ Wide Angle can be configure to handle presence of a cookie, or a cookie with spe Example configuration with cookie marker, expecting cookie name `WAA_CONSENT` with value `true`: -``` +```javascript app.use(WideAngle, { siteId: "8D27G3B9ACA01F4241", consentMarker: "WAA_CONSENT=true" @@ -169,7 +169,7 @@ Calling above methods on `waa` service will overwrite other consent mechanism (i Example usage: -``` +```vue