Skip to content

Instantly share code, notes, and snippets.

@webapprentice
Last active January 3, 2016 21:39
Show Gist options
  • Save webapprentice/8523431 to your computer and use it in GitHub Desktop.
Save webapprentice/8523431 to your computer and use it in GitHub Desktop.
<script src="/javascripts/ckeditor/ckeditor.js"></script>
<form action="/tutorial_43_demo_1" method="post">
<textarea class="ckeditor" rows="5" cols="40" name="editor"><%= @text %></textarea>
<br>
<input type="submit" value="Submit">
</form>
<hr>
<p>Raw text sent to the server:</p>
<pre>
<%= @escaped_text %>
</pre>
<hr>
<p>Formatted text sent from the server:</p>
<%= @text %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment