From 146b89344808831314de0e3d4894b75fc5578b2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Martin=20R=C3=A4mer?= <33319254+raemer@users.noreply.github.com> Date: Fri, 7 Aug 2020 12:49:05 +0200 Subject: [PATCH] puppet_function template: fix tags, source Move start of nesting to 'note' in setup.rb, otherwise nesting is not affected by yield in overview. --- .../yard/templates/default/puppet_function/html/setup.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puppet-strings/yard/templates/default/puppet_function/html/setup.rb b/lib/puppet-strings/yard/templates/default/puppet_function/html/setup.rb index b75f87fb3..69076c1e8 100644 --- a/lib/puppet-strings/yard/templates/default/puppet_function/html/setup.rb +++ b/lib/puppet-strings/yard/templates/default/puppet_function/html/setup.rb @@ -1,5 +1,5 @@ # Initializes the template. # @return [void] def init - sections :header, :box_info, :summary, :overview, :note, :todo, [T('tags'), :source] + sections :header, :box_info, :summary, :overview, [:note, :todo, T('tags'), :source] end