Last active
January 3, 2016 21:39
-
-
Save webapprentice/8523431 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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