Skip to content

Instantly share code, notes, and snippets.

@tomblanchard
Created April 29, 2020 14:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomblanchard/00b4ca6d5afb5801b70035c453d274e9 to your computer and use it in GitHub Desktop.
Save tomblanchard/00b4ca6d5afb5801b70035c453d274e9 to your computer and use it in GitHub Desktop.
{% assign google_analytics_id = nil %}
{% if content_for_header contains "ga('create', '" %}
{% assign google_analytics_id = content_for_header | split: "ga('create', '" | last | split: "'" | first | strip %}
{% endif %}
{% if google_analytics_id %}
<p>My Google Analytics ID is: {{ google_analytics_id }}</p>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment