Can I use normail HTML tags in wiki?
Added by Chris Cheung over 14 years ago
Is it possibile to do that~?
if it is, how to do that, because the tags become static text like <input type="text"/> instead of a real input box.
Thanks~
Replies (4)
RE: Can I use normail HTML tags in wiki? - Added by Wicola Lation about 14 years ago
Correct me if I'm wrong, but I thought in Redmine, all the pages (including wiki) can support HTML tags if we add the tags to the file lib/redcloth3.rb, under the part:
ALLOWED_TAGS = %w(redpre pre code notextile)
Example, we could add
ALLOWED_TAGS = %w(redpre pre code notextile input html a p br table)
RE: Can I use normail HTML tags in wiki? - Added by Felix Schäfer about 14 years ago
This is neither encouraged, tested nor officially supported. In other words: it might work, but you're on your own.
RE: Can I use normail HTML tags in wiki? - Added by Wicola Lation about 14 years ago
Oh, I didn't know that. Thanks for the advice.
For info, I have been using it (mainly I uses the <a> tag, as it allows specifying links to local files) and so far, things have been ok.