目次

Dokuwiki記法

文字の強調など

<wrap hi>ハイライト表示</wrap>

ハイライト表示

<wrap em>赤い太文字表示</wrap>

赤い太文字表示

そのために、''%%--type=angular%%''が必要になってしまった

そのために、--type=angularが必要になってしまった

DokuwikiにGoogleAnalyticsのGタグを設定する方法

2022/05/03 更新

https://itlogs.net/dokuwiki-default/
DokuWikiのデフォルトテンプレートのカスタマイズを解説

https://itlogs.net/dokuwiki-analytics/
DokuWikiにGoogleアナリティクスを設定する方法


以下の、2か所の「G-xxxxxxxxxx」は、ご自身のGタグを入力してください。

<?php
    global $INFO;
    if (!$INFO['isadmin']) {
?>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-xxxxxxxxxx"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-xxxxxxxxxx');
</script>
<?php
    }
?>

リンク

https://i-doctor.sakura.ne.jp/dokuwiki/doku.php/dokuwiki%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB2018%E5%B9%B4%E7%89%88
dokuwikiインストール2018年版