메크로 기능으로 HTML 를 위키 (WIKI) 에 표시하기.
레드마인 버전 : 2.6 위키에서 HTML가 즉시 표시가 안되기 때문에 메크로를 사용해야한다. 1. macros.rb 파일에 아래 소스를 넣는다. - 하단에 macro 들이 모여있는 곳이 있다. 중간에 넣어주자.. {redmine_home}\apps\redmine\htdocs\lib\redmine\wiki_formatting\macros.rb desc "Insert html" + "\n\n" + " !{{html\n\n}}" macro :html do |obj, args, text| return unless User.current.allowed_to?(:edit_wiki_pages, @project) text.html_safe end2. redmine manager 툴을 이용하여 레드마인 프로세스 재기동..