I'm developing a plugin for running multilingual websites where I'm using a shortcode [translate lang=en] for each language in the tinyMCE editor, I'm using a function that inserts a div around each language tag in the editor screen, and using editor-style.css to make a border around that div to separate each language from the other.
When I hit enter for a new line, tinyMCE automatically creates a new div around the new line.
what i'm getting when I hit enter:
[translate lang=en]
<div class="lang_editor_divider">line 1</div>
<div class="lang_editor_divider">line 2</div>
[/translate]
what i'm trying to get:
[translate lang=en]
<div class="lang_editor_divider">line 1
line 2</div>
[/translate]