vote up 0 vote down star

Hello everybody. I am using TinyMCE (http://tinymce.moxiecode.com/) in a .NET page. Whenever I load a text

myTMCE.value=mycontent;

I can see that my text gets wrapped in <p></p>. This is not desirable for me, so I am trying to avoid it. Trying to initialize in

        <script>
            tinyMCE.init({
                force_p_newlines: true
            })

        </script>

did not work. Any idea? Thanks in advance, m.

flag

80% accept rate

4 Answers

vote up 0 vote down check

You could strip <p> tags after the fact using .NET, or alternatively, just use a plain <textarea> field for data entry if that suits what you're trying to do.

link|flag
I think I'll strip the leading and trailing <p></p> but is a dirty solution. – pomarc May 1 at 11:37
vote up 0 vote down

Read the FAQ about paragraphs. link text

link|flag
vote up 0 vote down

TinyMCE adds a whole load of tags to the text - its design goal is to create valid html from arbitrary input (including html input). If you want control over the generated html code, you're better off using another editor.

link|flag
that's a pity, because tinyMCE works quite well, beside this unwanted behaviour. – pomarc May 1 at 11:36
vote up 2 vote down

See this thread and the answer in TinyMCE forum. force_p_newline is a gecko only option (ie FF).

link|flag
however afaik force_p_newlines has another pourpose. – pomarc May 1 at 11:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.