B
B
Bakotiinii2012-08-13 08:22:16
Text Processing Automation
Bakotiinii, 2012-08-13 08:22:16

Is the spacing between paragraphs too big?

1) you insert text from the Word - using the insert buttons, the size between paragraphs is larger than in Verde. You press edit (manually remove) the intervals between paragraphs - they are not removed and the interval between paragraphs still increases.
2) you write the text manually - just in the editor. The intervals are larger than in the editor, you press edit - the intervals also increase.
Those. that from verda that you print intervals with pens more than necessary, and when you try to edit - they double. I just typed the text - I pressed edit (exited), edit (exited) - and the text splits into 3-4 screens.
3) when you go into adding an article, the editor (editor window) loads slowly and the site loads just as slowly when adding a post to the site.
How to fix. editor ckeditor.com/

Answer the question

In order to leave comments, you need to log in

4 answer(s)
S
sergof, 2012-08-13
@sergof

unsee...

N
Nikolai, 2012-08-13
@pragmatik

I hardly made my way through the jungle of your spelling,
you at least drive through the Word before you post on Habr.
It’s not entirely clear whether you look into the html code when editing the text, reflect how the html markup of the text changes for each of the paragraphs (from what I read, I got the impression that you have problems with the paragraph tag <p>, which is delivered by the editor when copying instead of <br />),

i.e
допустим, копируете вы текст в котором каждое предложение начинается с новой строки:
Мая плоха хаварить па русски.
Особенно тяжело у мая с согласовать предложение.
Это очевидно по тому, что мая называть данный вопрос «ИнтерваЛЫ между абзацами большОЙ?».

если, после копирования у Вас каждый абзац оказывается заключен в тег <p>, например:
<p>Мая плоха хаварить па русски.</p> <p>Особенно тяжело у мая с согласовать предложение.</p> <p>Это очевидно по тому, что мая называть данный вопрос "ИнтерваЛЫ между абзацами большОЙ?".</p>
— этот текст будет отображаться с большими интервалами между предложениями, т.к. каждое предложение будет восприниматься как абзац и форматироваться соответственно. Чтобы такого не происходило нужно использовать тег «переноса каретки»
<p>Мая плоха хаварить па русски.<br />Особенно тяжело у мая с согласовать предложение.<br />Это очевидно по тому, что мая называть данный вопрос "ИнтерваЛЫ между абзацами большОЙ?".</p>
Тогда, расстояние между предложениями будет как в оригинале — минимально.

specify which editor you use in the 3rd paragraph ( and, I ask, why do you use ckeditor if you also have a CMS editor )

H
Hint, 2012-08-13
@Hint

Change the styles for the "p" tag (margin, padding).

S
sergof, 2012-08-13
@sergof

did you try that?
<script type="text/javascript" src="/js/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="/js/ckeditor/adapters/jquery.js"></script>
<script type="text/javascript">
$(function() {
$('#your_textarea').ckeditor({
toolbar: 'Full',
enterMode : CKEDITOR.ENTER_BR,
shiftEnterMode: CKEDITOR.ENTER_P
});
});
</script>
enterMode: CKEDITOR.ENTER_BR - responsible for interpreting the newline character

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question