Redmineのwikiでのhtmlタグ許可¶
Redmineのwikiではhtmlタグの使用が制限されているが、次のファイル編集でタグごとに許可することができます。
- Redmine インストール先に移動します。
cd /usr/local/redmine
- 次のファイルを編集します
vi lib/redmine/wiki_formatting/textile/redcloth3.rb
- 末尾付近の「ALLOWED_TAGS」定義内に、使用したいタグをスペース区切りで記載します。
ALLOWED_TAGS = %w(pre code kbd notextile) ↓ ALLOWED_TAGS = %w(pre code kbd notextile br iframe)
- サービスを再起動します
systemctl restart httpd