From f3584438b3e6bed0174fa0fa51f0ebeef04b1ee3 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Mon, 2 Oct 2023 09:30:37 -0400 Subject: [PATCH] chore: analytics on hexdocs --- mix.exs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mix.exs b/mix.exs index cd9fd4f..dc32f62 100644 --- a/mix.exs +++ b/mix.exs @@ -22,6 +22,13 @@ defmodule Reactor.MixProject do main: "readme", extras: extra_documentation(), groups_for_extras: extra_documentation_groups(), + before_closing_head_tag: fn type -> + if type == :html do + """ + + """ + end + end, groups_for_modules: [ DSL: ~r/^Reactor\.Dsl$/, Steps: ~r/^Reactor\.Step.*/,