freemarker.core.InvalidReferenceException: Expression JspTaglibs is undefined on line 1
<#assign FCK=JspTaglibs["/WEB-INF/FCKeditor.tld"]> <html > <head> </head> <body> <@s.form action="" method="post" theme="simple"> <@FCK.editor instanceName="editorDefault" height="500px" /> <@s.submit name="submit" /> </@s.form> </body> </html>

Re: How can FCKeditor integration with freemarker?
http://java.fckeditor.net/velocity_freemarker.html
Re: How can FCKeditor integration with freemarker?
public String get(final String instanceName, final String value) { FCKeditor editor = new FCKeditor(request, instanceName); editor.setValue(value); return editor.createHtml(); } <html> <head> </head> <body> <@s.form action="" method="post" theme="simple"> <p> <@s.text name="article.title"></@s.text><@s.textfield name="title" ></@s.textfield> </p> <p> ${fckeditorWrapper.get("content", "Some text")} </p> <p> <@s.submit name="submit" /> </p> </@s.form> </body> </html>Re: How can FCKeditor integration with freemarker?
The FCKeditor class abstracts completely from XML, encodes parameters, checks them (partially) and makes sure that the code is XML compliant.
It is completely hassle-free. Just use it, don't worry.