I use the ckeditor bug, and when I use paste as a text dialog, it encapsulates the text in quotation marks, as well as <p> and <br>. Is there a way I can tell ckeditor not to use any markup when using this option.
What I'm trying to accomplish is to have snippets of code inside an article. These fragments are processed using markdown gemstone as well as .rb pigments. The following code is what I'm trying to execute
```ruby puts "hello world" class Hello end ```
and this is what I get
<p> ```ruby<br /> puts "hello world" class hello<br /> end<br /></p>
source share