Asciidoctor:如何使用asciidoctor-maven-plugin将Google Analytics代码添加到所有HTML页面

时间:2016-09-19 17:02:14

标签: maven google-analytics asciidoc asciidoctor

如何将Google Analytics(或Google跟踪代码管理器)代码添加到Asciidoctor生成的所有HTML网页中?有an extension,但maven存储库中没有。我使用的是asciidoctor-maven-plugin

2 个答案:

答案 0 :(得分:1)

如果扩展程序已在RubyGems上发布,您可以使用TorqueBox RubyGems Maven Proxy Repository下载相关性。

查看asciidoctor maven示例中的asciidoctor-pdf-with-theme-example

答案 1 :(得分:0)

如果您的文件位于同一目录中index-docinfo-footer.html,请在该adoc文件中添加index.adoc,以创建文件:docinfo:

使用以下内容填充该页脚文件:

<script type="text/javascript">
dataLayer = [{'channel' : '{html-googleTagManagerChannel}', 'additional_tracking_code' : '{html-googleAnalyticsId}'}];
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','{html-googleTagManagerId}');</script>
<noscript><iframe src="//www.googletagmanager.com/ns.html?id={html-googleTagManagerId}" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>

然后在你的pom.xml中做这样的事情:

    <plugin>
      <groupId>org.asciidoctor</groupId>
      <artifactId>asciidoctor-maven-plugin</artifactId>
      <configuration>
        <attributes>
          <html-googleAnalyticsId>UA-123456789-1</html-googleAnalyticsId>
          <html-googleTagManagerId>GTM-ABCDE</html-googleTagManagerId>
          <html-googleTagManagerChannel>MyProject</html-googleTagManagerChannel>
        </attributes>
      </configuration>