Redactor Version 2.8.1 how to avoid wrapping with p tagsRedactor Rails - How to save content to database?Redactor adding unnecessary tags while editing font families to text in editorTags / placeholder in WYSIWYG (Redactor)Remove empty tags in Imperavi RedactorRedactor.js jQuery UI dialog focus issueRedactor editor - How to set cursor at the end on focusHow can I detect an emoji insert event from the OS X character viewer and iOS emoji keyboard in Javascript/Redactor?Redactor - How to implement stripTags API call?How to change image text in RedactorIn Redactor WYSIWYG editor, how can I add a <dl> tag?
How can I close a gap between my fence and my neighbor's that's on his side of the property line?
Verb "geeitet" in an old scientific text
Can there be a single technologically advanced nation, in a continent full of non-technologically advanced nations?
I'm in your subnets, golfing your code
If your medical expenses exceed your income does the IRS pay you?
As matter approaches a black hole, does it speed up?
Why is Arya visibly scared in the library in S8E3?
Getting a W on your transcript for grad school applications
How do I overfit?
Randomness of Python's random
String won't reverse using reverse_copy
How can I get a job without pushing my family's income into a higher tax bracket?
I have a unique character that I'm having a problem writing. He's a virus!
Prove that the limit exists or does not exist
Why do money exchangers give different rates to different bills?
How wide is a neg symbol, how to get the width for alignment?
Would Hubble Space Telescope improve black hole image observed by EHT if it joined array of telesopes?
I need a disease
Can you complete the sequence?
Why is the relative clause in the following sentence not directly after the noun and why is the verb not in the end of the sentence?
What happens if you dump antimatter into a black hole?
How to apply differences on part of a list and keep the rest
Using column size much larger than necessary
Why do only some White Walkers shatter into ice chips?
Redactor Version 2.8.1 how to avoid wrapping with p tags
Redactor Rails - How to save content to database?Redactor adding unnecessary tags while editing font families to text in editorTags / placeholder in WYSIWYG (Redactor)Remove empty tags in Imperavi RedactorRedactor.js jQuery UI dialog focus issueRedactor editor - How to set cursor at the end on focusHow can I detect an emoji insert event from the OS X character viewer and iOS emoji keyboard in Javascript/Redactor?Redactor - How to implement stripTags API call?How to change image text in RedactorIn Redactor WYSIWYG editor, how can I add a <dl> tag?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am using this library, but have an issue with how the rich text is being saved in my db.
When I enter a single line of text in the redactor text area and save it to my db, the text is saved as follows:
"name" : "sfdsfdsf <u>sfdsfds</u>",
"data" : "sfdsfdsf <strong>sfdsfds</strong>",
...
This is correct. However, if in the redactor text area I add a line to separate text, e.g.
This is some text in line 1
This is some other text in line 3
I would expect this to be stored in the db as follows:
...
"data" : "This is some <strong>text</strong> in line 1<br/><br/>This is some other text in line 3",
...
Instead the redactor text being saves is wrapped by p
tags, like this:
...
"data" : "<p>This is some <strong>text</strong> in line 1</p><br/><br/><p>This is some other text in line 3</p>",
...
I don't want the p
tags, so I tried using a combination of the following fields:
this.$('#[className]').redactor({
...
paragraphize: false,
linebreaks: false,
...
replaceDivs: false
...
None of these work. Is there a way to change the settings, so that the p
tags are not added to what is being saved? I only want br
tags to be used to separate the paragraphs? Thanks.
SOLUTION I upgraded to version 3.1.7 and found the solution to this problem to use their built in breakline mode. No other options are necessary, just breakline
and it works like expected.
One this I did notice is that unlike in the previous versions, you seem to need to click in the text-area before being able to click the formatting options (bold, etc.). This is breaking my integration tests, so figuring out if this is a setting or just the way this works now.
redactor redactor.js
add a comment |
I am using this library, but have an issue with how the rich text is being saved in my db.
When I enter a single line of text in the redactor text area and save it to my db, the text is saved as follows:
"name" : "sfdsfdsf <u>sfdsfds</u>",
"data" : "sfdsfdsf <strong>sfdsfds</strong>",
...
This is correct. However, if in the redactor text area I add a line to separate text, e.g.
This is some text in line 1
This is some other text in line 3
I would expect this to be stored in the db as follows:
...
"data" : "This is some <strong>text</strong> in line 1<br/><br/>This is some other text in line 3",
...
Instead the redactor text being saves is wrapped by p
tags, like this:
...
"data" : "<p>This is some <strong>text</strong> in line 1</p><br/><br/><p>This is some other text in line 3</p>",
...
I don't want the p
tags, so I tried using a combination of the following fields:
this.$('#[className]').redactor({
...
paragraphize: false,
linebreaks: false,
...
replaceDivs: false
...
None of these work. Is there a way to change the settings, so that the p
tags are not added to what is being saved? I only want br
tags to be used to separate the paragraphs? Thanks.
SOLUTION I upgraded to version 3.1.7 and found the solution to this problem to use their built in breakline mode. No other options are necessary, just breakline
and it works like expected.
One this I did notice is that unlike in the previous versions, you seem to need to click in the text-area before being able to click the formatting options (bold, etc.). This is breaking my integration tests, so figuring out if this is a setting or just the way this works now.
redactor redactor.js
add a comment |
I am using this library, but have an issue with how the rich text is being saved in my db.
When I enter a single line of text in the redactor text area and save it to my db, the text is saved as follows:
"name" : "sfdsfdsf <u>sfdsfds</u>",
"data" : "sfdsfdsf <strong>sfdsfds</strong>",
...
This is correct. However, if in the redactor text area I add a line to separate text, e.g.
This is some text in line 1
This is some other text in line 3
I would expect this to be stored in the db as follows:
...
"data" : "This is some <strong>text</strong> in line 1<br/><br/>This is some other text in line 3",
...
Instead the redactor text being saves is wrapped by p
tags, like this:
...
"data" : "<p>This is some <strong>text</strong> in line 1</p><br/><br/><p>This is some other text in line 3</p>",
...
I don't want the p
tags, so I tried using a combination of the following fields:
this.$('#[className]').redactor({
...
paragraphize: false,
linebreaks: false,
...
replaceDivs: false
...
None of these work. Is there a way to change the settings, so that the p
tags are not added to what is being saved? I only want br
tags to be used to separate the paragraphs? Thanks.
SOLUTION I upgraded to version 3.1.7 and found the solution to this problem to use their built in breakline mode. No other options are necessary, just breakline
and it works like expected.
One this I did notice is that unlike in the previous versions, you seem to need to click in the text-area before being able to click the formatting options (bold, etc.). This is breaking my integration tests, so figuring out if this is a setting or just the way this works now.
redactor redactor.js
I am using this library, but have an issue with how the rich text is being saved in my db.
When I enter a single line of text in the redactor text area and save it to my db, the text is saved as follows:
"name" : "sfdsfdsf <u>sfdsfds</u>",
"data" : "sfdsfdsf <strong>sfdsfds</strong>",
...
This is correct. However, if in the redactor text area I add a line to separate text, e.g.
This is some text in line 1
This is some other text in line 3
I would expect this to be stored in the db as follows:
...
"data" : "This is some <strong>text</strong> in line 1<br/><br/>This is some other text in line 3",
...
Instead the redactor text being saves is wrapped by p
tags, like this:
...
"data" : "<p>This is some <strong>text</strong> in line 1</p><br/><br/><p>This is some other text in line 3</p>",
...
I don't want the p
tags, so I tried using a combination of the following fields:
this.$('#[className]').redactor({
...
paragraphize: false,
linebreaks: false,
...
replaceDivs: false
...
None of these work. Is there a way to change the settings, so that the p
tags are not added to what is being saved? I only want br
tags to be used to separate the paragraphs? Thanks.
SOLUTION I upgraded to version 3.1.7 and found the solution to this problem to use their built in breakline mode. No other options are necessary, just breakline
and it works like expected.
One this I did notice is that unlike in the previous versions, you seem to need to click in the text-area before being able to click the formatting options (bold, etc.). This is breaking my integration tests, so figuring out if this is a setting or just the way this works now.
redactor redactor.js
redactor redactor.js
edited Mar 25 at 20:46
thehme
asked Mar 22 at 22:07
thehmethehme
97011320
97011320
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55308401%2fredactor-version-2-8-1-how-to-avoid-wrapping-with-p-tags%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55308401%2fredactor-version-2-8-1-how-to-avoid-wrapping-with-p-tags%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown