redmineのシンタックスハイライト


<pre><code class="python"> # -*- coding:utf-8 -*- import re str_reg = re.compile("[\w|\W]*Known\s+issue[\w|\W]*") result = str_reg.match("Hungry") if result is None: print "not exist" else: print "exist" </code></pre>

みたいに書くとシンタックスハイライトがつく。

python,cpp,ruby,javaなどと書けばよい。

参考:

http://blog.redmine.jp/articles/syntax-hilight/