There is a conflict between the hash symbol “#” at the end of the sections and the FCKEditor. For details, please refer to the link:
http://www.mail-archive.com/jspwiki-commits@incubator.apache.org/msg00908.html
In order to solve this conflict, please modify the following line in the procedure “closeHeadings” of file “src\com\ecyrd\jspwiki\parser\JSPWikiMarkupParser.java”:
if( m_lastHeading != null )
is changed to
if( m_lastHeading != null && !m_wysiwygEditorMode )
such that the hash link will not shown up in FCKEditor.
Comments#
It seems the above fix will show up in JspWiki version later than 2.8.1. Since I am using 2.8.1 (which is the most recent one, as of 2009-02-27), I have to fix it by changing and recompiling the source code.
-- Kevin Yuen