I'm trying to display content from one wiki page in redmine in my welcome/index file.
I've tried linking pages with [[foo]]
(which I have found out only works in the wiki itself) and !{{include(projectname:stuff)}}
, but when I try to use this, my redmine only displays it as plain text.
<div class="splitcontentright">
<div class="news box">
<h3><%=("News")%></h3>
!{{include(MyWikiPage:MyArticle))}}
<%= call_hook(:view_welcome_index_right, :projects => @projects) %>
</div>
</div>
Is this the wrong method? Is there another way to achieve what I'm trying to do?